#-------------------------------------------------------- # The CMakeLists.txt for: uTimerScript # Author(s): Mike Benjamin #-------------------------------------------------------- # Set System Specific Libraries if (${WIN32}) SET(SYSTEM_LIBS wsock32) else (${WIN32}) SET(SYSTEM_LIBS m pthread) endif (${WIN32}) SET(SRC TS_MOOSApp.cpp EnumVariable.cpp RandomVariable.cpp RandomVariableSet.cpp main.cpp) ADD_EXECUTABLE(uTimerScript ${SRC}) TARGET_LINK_LIBRARIES(uTimerScript MOOS MOOSGen mbutil logic ${SYSTEM_LIBS}) # Install Targets INSTALL(TARGETS uTimerScript RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin )