SystemC-Components-Test/examples/transaction_recording/CMakeLists.txt

11 lines
530 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.3)
2017-09-18 07:30:54 +02:00
# Add executable called "transaction_recording" that is built from the source files
# "scv_tr_recording_example.cpp". The extensions are automatically found.
2018-04-27 19:35:45 +02:00
add_executable (transaction_recording
scv_tr_recording_example.cpp
)
2017-09-18 07:30:54 +02:00
# Link the executable to the sc_components library. Since the sc_components library has
# public include directories we will use those link directories when building
# transaction_recording
2019-12-22 18:42:28 +01:00
target_link_libraries (transaction_recording LINK_PUBLIC scc ${CONAN_LIBS})