9 lines
237 B
CMake
9 lines
237 B
CMake
|
cmake_minimum_required(VERSION 3.12)
|
||
|
add_executable (sim_performance
|
||
|
sc_main.cpp
|
||
|
blocks.cpp
|
||
|
top.cpp
|
||
|
)
|
||
|
target_link_libraries (sim_performance LINK_PUBLIC scc)
|
||
|
target_link_libraries (sim_performance LINK_PUBLIC ${Boost_LIBRARIES} )
|