Installer: Address review comments

Correctly set permissions on mac installer and create a missing folder
This commit is contained in:
James Rowe 2017-09-28 19:38:27 -06:00
parent 709c89a1d8
commit e7da39a382
2 changed files with 14 additions and 3 deletions

View file

@ -3,13 +3,14 @@ if(WIN32)
set(PLATFORM "windows")
elseif(APPLE)
set(PLATFORM "mac")
elseif(LINUX)
elseif(UNIX)
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}")
file(MAKE_DIRECTORY ${BUILD_DIR})
# 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.
@ -19,4 +20,4 @@ add_custom_command(OUTPUT "${TARGET_FILE}"
WORKING_DIRECTORY ${BUILD_DIR}
)
add_custom_target(installer DEPENDS ${TARGET_FILE})
add_custom_target(installer DEPENDS ${TARGET_FILE})