Files
DRAMSys/extensions/standards/HBM3/CMakeLists.txt
Derek Christ ca9ef16d0d Remove unnecessary project() calls
project() should only be called if the subdirectory, in fact, can be
built standalone.
2024-12-20 17:40:15 +01:00

16 lines
422 B
CMake

option(DRAMSYS_EXTENSION_HBM3_ENABLE "Enable DRAMSys HBM3 Support" ON)
if(NOT DRAMSYS_EXTENSION_HBM3_ENABLE)
return()
endif()
message(STATUS " * HBM3")
target_sources(libdramsys PRIVATE
DRAMSys/configuration/memspec/MemSpecHBM3.cpp
DRAMSys/controller/checker/CheckerHBM3.cpp
)
target_include_directories(libdramsys PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
target_compile_definitions(libdramsys PUBLIC HBM3_SIM)