You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.0 KiB
38 lines
1.0 KiB
cmake_minimum_required(VERSION 2.6)
|
|
project(sylvan C CXX)
|
|
|
|
include_directories(.)
|
|
|
|
add_executable(mc mc.c getrss.h getrss.c)
|
|
target_link_libraries(mc sylvan)
|
|
|
|
add_executable(lddmc lddmc.c getrss.h getrss.c)
|
|
target_link_libraries(lddmc sylvan)
|
|
|
|
add_executable(simple simple.cpp)
|
|
target_link_libraries(simple sylvan stdc++)
|
|
|
|
if(USE_CARL)
|
|
message(STATUS "Sylvan - Example for Storm enabled.")
|
|
add_executable(storm-rf storm.cpp)
|
|
target_link_libraries(storm-rf sylvan stdc++ ${carl_LIBRARIES})
|
|
endif(USE_CARL)
|
|
|
|
include(CheckIncludeFiles)
|
|
check_include_files("gperftools/profiler.h" HAVE_PROFILER)
|
|
|
|
if(HAVE_PROFILER)
|
|
set_target_properties(mc PROPERTIES COMPILE_DEFINITIONS "HAVE_PROFILER")
|
|
target_link_libraries(mc profiler)
|
|
|
|
set_target_properties(lddmc PROPERTIES COMPILE_DEFINITIONS "HAVE_PROFILER")
|
|
target_link_libraries(lddmc profiler)
|
|
endif()
|
|
|
|
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
|
# add argp library for OSX
|
|
target_link_libraries(mc argp)
|
|
target_link_libraries(lddmc argp)
|
|
endif()
|
|
|
|
|