2017-09-28 17:27:42 +01:00
|
|
|
|
|
|
|
if(WIN32)
|
|
|
|
set(PLATFORM "windows")
|
|
|
|
elseif(APPLE)
|
|
|
|
set(PLATFORM "mac")
|
2017-09-29 02:38:27 +01:00
|
|
|
elseif(UNIX)
|
2017-09-28 17:27:42 +01:00
|
|
|
set(PLATFORM "linux")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(BUILD_DIR "${CMAKE_BINARY_DIR}/installer")
|
|
|
|
set(DIST_DIR "${BUILD_DIR}/dist")
|
|
|
|
set(TARGET_FILE "${DIST_DIR}/citra-setup-${PLATFORM}")
|
2017-09-29 02:38:27 +01:00
|
|
|
file(MAKE_DIRECTORY ${BUILD_DIR})
|
2017-09-28 17:27:42 +01:00
|
|
|
|
|
|
|
# Adds a custom target that will run the BuildInstaller.cmake file
|
|
|
|
# CMake can't just run a cmake function as a custom command, so this is a way around it.
|
|
|
|
# Calls the cmake command and runs a cmake file in "scripting" mode passing in variables with -D
|
|
|
|
add_custom_command(OUTPUT "${TARGET_FILE}"
|
|
|
|
COMMAND ${CMAKE_COMMAND} -DSRC_DIR=${CMAKE_CURRENT_SOURCE_DIR} -D BUILD_DIR=${BUILD_DIR} -D TARGET_FILE=${TARGET_FILE} -P ${CMAKE_SOURCE_DIR}/CMakeModules/BuildInstaller.cmake
|
|
|
|
WORKING_DIRECTORY ${BUILD_DIR}
|
|
|
|
)
|
|
|
|
|
2017-09-29 02:38:27 +01:00
|
|
|
add_custom_target(installer DEPENDS ${TARGET_FILE})
|