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.
9 lines
447 B
9 lines
447 B
# Create storm-conv.
|
|
add_executable(storm-conv-cli ${PROJECT_SOURCE_DIR}/src/storm-conv-cli/storm-conv.cpp)
|
|
target_link_libraries(storm-conv-cli storm-conv storm-cli-utilities) # Adding headers for xcode
|
|
set_target_properties(storm-conv-cli PROPERTIES OUTPUT_NAME "storm-conv")
|
|
|
|
add_dependencies(binaries storm-conv-cli)
|
|
|
|
# installation
|
|
install(TARGETS storm-conv-cli EXPORT storm_Targets RUNTIME DESTINATION bin LIBRARY DESTINATION lib OPTIONAL)
|