This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
gmrf/mmss/CMakeLists.txt

21 lines
550 B
Text
Raw Normal View History

2013-07-26 14:22:18 +02:00
include_directories(${GMRF_SOURCE_DIR}/include ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR})
set_directory_properties(PROPERTIES COMPILE_DEFINITIONS _GNU_SOURCE)
2013-07-26 14:22:18 +02:00
BISON_TARGET(mmss_config_parse config.y ${CMAKE_CURRENT_BINARY_DIR}/config.yy.cpp)
add_executable(mmss
2013-07-26 14:22:18 +02:00
config.cpp
2013-07-27 18:53:27 +02:00
context.cpp
event.cpp
2013-07-26 19:47:09 +02:00
gmrf.cpp
2013-07-26 14:22:18 +02:00
iface.cpp
lex.cpp
2013-07-26 14:22:18 +02:00
mmss.cpp
monitor_log.cpp
2013-07-27 23:38:38 +02:00
network.cpp
2013-07-26 14:22:18 +02:00
protocol.cpp
${BISON_mmss_config_parse_OUTPUTS}
)
2013-03-18 03:06:20 +01:00
target_link_libraries(mmss dl)
set_target_properties(mmss PROPERTIES COMPILE_FLAGS "-std=c++11 -Wall")