2017-10-31 09:13:21 +00:00
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/CMakeModules)
|
|
|
|
|
2017-11-16 18:28:15 +00:00
|
|
|
add_executable(citra-room
|
2022-12-17 15:06:38 +00:00
|
|
|
precompiled_headers.h
|
2017-11-16 18:28:15 +00:00
|
|
|
citra-room.cpp
|
|
|
|
citra-room.rc
|
|
|
|
)
|
2017-10-31 09:13:21 +00:00
|
|
|
|
2017-11-16 18:28:15 +00:00
|
|
|
create_target_directory_groups(citra-room)
|
2017-10-31 09:13:21 +00:00
|
|
|
|
2023-04-28 21:02:53 +01:00
|
|
|
target_link_libraries(citra-room PRIVATE citra_common network)
|
2018-10-27 08:46:58 +01:00
|
|
|
if (ENABLE_WEB_SERVICE)
|
|
|
|
target_link_libraries(citra-room PRIVATE web_service)
|
|
|
|
endif()
|
|
|
|
|
2020-08-20 20:54:01 +01:00
|
|
|
target_link_libraries(citra-room PRIVATE cryptopp)
|
2017-10-31 09:13:21 +00:00
|
|
|
if (MSVC)
|
|
|
|
target_link_libraries(citra-room PRIVATE getopt)
|
|
|
|
endif()
|
2018-04-06 20:27:47 +01:00
|
|
|
target_link_libraries(citra-room PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads)
|
2017-10-31 09:13:21 +00:00
|
|
|
|
|
|
|
if(UNIX AND NOT APPLE)
|
|
|
|
install(TARGETS citra-room RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
|
|
|
|
endif()
|
2022-12-17 15:06:38 +00:00
|
|
|
|
|
|
|
if (CITRA_USE_PRECOMPILED_HEADERS)
|
|
|
|
target_precompile_headers(citra-room PRIVATE precompiled_headers.h)
|
|
|
|
endif()
|
2023-07-06 01:37:06 +01:00
|
|
|
|
|
|
|
# Bundle in-place on MSVC so dependencies can be resolved by builds.
|
|
|
|
if (MSVC)
|
|
|
|
include(BundleTarget)
|
|
|
|
bundle_target_in_place(citra-room)
|
|
|
|
endif()
|