2018-04-20 17:25:54 +00:00
|
|
|
find_package(Boost COMPONENTS filesystem program_options)
|
|
|
|
|
|
|
|
set(LAUNCHMETHODS
|
|
|
|
Executor.h Executor.cc
|
|
|
|
MiniVMac.h MiniVMac.cc
|
|
|
|
SSH.h SSH.cc
|
2018-04-20 22:03:29 +00:00
|
|
|
Serial.h Serial.cc
|
2018-04-20 17:25:54 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
if(APPLE)
|
|
|
|
LIST(APPEND LAUNCHMETHODS
|
|
|
|
Classic.h Classic.cc
|
|
|
|
)
|
|
|
|
LIST(APPEND LAUNCHMETHODS
|
|
|
|
Carbon.h Carbon.cc)
|
|
|
|
endif()
|
|
|
|
add_definitions(-DRETRO68_PREFIX="${CMAKE_INSTALL_PREFIX}")
|
|
|
|
|
|
|
|
add_executable(LaunchAPPL
|
|
|
|
LaunchAPPL.cc
|
|
|
|
MakeExecutable.cc
|
|
|
|
|
|
|
|
LaunchMethod.h LaunchMethod.cc
|
|
|
|
Launcher.h Launcher.cc
|
|
|
|
|
|
|
|
Utilities.h Utilities.cc
|
|
|
|
|
|
|
|
${LAUNCHMETHODS})
|
|
|
|
|
|
|
|
|
|
|
|
target_include_directories(LaunchAPPL PRIVATE ${CMAKE_INSTALL_PREFIX}/include ${Boost_INCLUDE_DIR})
|
2018-04-20 22:03:29 +00:00
|
|
|
target_link_libraries(LaunchAPPL ResourceFiles LaunchAPPLCommon ${Boost_LIBRARIES})
|
2018-04-20 17:25:54 +00:00
|
|
|
|
|
|
|
if(APPLE)
|
|
|
|
find_library(APPLICATIONSERVICES_FW ApplicationServices)
|
|
|
|
target_link_libraries(LaunchAPPL ${APPLICATIONSERVICES_FW})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
install(TARGETS LaunchAPPL RUNTIME DESTINATION bin)
|