16 lines
446 B
CMake
16 lines
446 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(DRAMSys_libdramsys PRIVATE
|
|
DRAMSys/configuration/memspec/MemSpecHBM3.cpp
|
|
DRAMSys/controller/checker/CheckerHBM3.cpp
|
|
)
|
|
|
|
target_include_directories(DRAMSys_libdramsys PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
|
target_compile_definitions(DRAMSys_libdramsys PUBLIC HBM3_SIM)
|