diff --git a/CMakeLists.txt b/CMakeLists.txt index 5dbf63c5b..ea2bf5d66 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -419,7 +419,6 @@ if (USE_SYSTEM_SOUNDTOUCH) endif() add_subdirectory(src) -add_subdirectory(dist/installer) # Set lime-qt project or lime project as default StartUp Project in Visual Studio depending on whether QT is enabled or not diff --git a/dist/installer/CMakeLists.txt b/dist/installer/CMakeLists.txt deleted file mode 100644 index 3dcc59653..000000000 --- a/dist/installer/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ - -if(WIN32) - set(PLATFORM "windows") -elseif(APPLE) - set(PLATFORM "mac") -elseif(UNIX) - set(PLATFORM "linux") -else() - message(FATAL_ERROR "Cannot build installer for this unsupported platform") -endif() - -set(BUILD_DIR "${CMAKE_BINARY_DIR}/installer") -set(DIST_DIR "${BUILD_DIR}/dist") -set(TARGET_FILE "${DIST_DIR}/lime3ds-setup-${PLATFORM}") - -file(MAKE_DIRECTORY "${BUILD_DIR}" "${DIST_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. -# 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} - -DBASE_DIR=${CMAKE_SOURCE_DIR} - -DSRC_DIR=${CMAKE_CURRENT_SOURCE_DIR} - -DBUILD_DIR=${BUILD_DIR} - -DTARGET_FILE=${TARGET_FILE} - -P ${CMAKE_SOURCE_DIR}/CMakeModules/BuildInstaller.cmake - WORKING_DIRECTORY ${BUILD_DIR} -) - -add_custom_target(installer DEPENDS ${TARGET_FILE}) diff --git a/dist/installer/README.md b/dist/installer/README.md deleted file mode 100644 index b43b1f2b5..000000000 --- a/dist/installer/README.md +++ /dev/null @@ -1,9 +0,0 @@ -Lime3DS Qt Installer -================== - -This contains the configuration files for building Lime3DS's installer. - -Installers can only be built on the platform that they are targeting. - -Build the `installer` target to generate the installer, and the installer will be in -${build_dir}/installer/dist/ diff --git a/dist/installer/config/config_linux.xml b/dist/installer/config/config_linux.xml deleted file mode 100644 index 45e6bcbb8..000000000 --- a/dist/installer/config/config_linux.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - Lime3DS - 1.0.0 - Lime3DS Updater - Lime3DS Team - - @HomeDir@/.lime3ds - /opt/lime3ds - icon - icon.png - - - https://repo.citra-emu.org - 1 - Official Lime3DS Repository - - - diff --git a/dist/installer/config/config_mac.xml b/dist/installer/config/config_mac.xml deleted file mode 100644 index 0ad0933a4..000000000 --- a/dist/installer/config/config_mac.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - Lime3DS - 1.0.0 - Lime3DS Updater - Lime3DS Team - - @ApplicationsDir@/Lime3DS - icon - icon.png - - - https://repo.citra-emu.org - 1 - Official Lime3DS Repository - - - diff --git a/dist/installer/config/config_windows.xml b/dist/installer/config/config_windows.xml deleted file mode 100644 index 6a6edc7f1..000000000 --- a/dist/installer/config/config_windows.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - Lime3DS - 1.0.0 - Lime3DS Updater - Lime3DS Team - Lime3DS - - @HomeDir@/AppData/Local/Lime3DS - icon - icon.png - - - https://repo.citra-emu.org - 1 - Official Lime3DS Repository - - - diff --git a/dist/installer/config/icon.icns b/dist/installer/config/icon.icns deleted file mode 100644 index df50274fa..000000000 Binary files a/dist/installer/config/icon.icns and /dev/null differ diff --git a/dist/installer/config/icon.ico b/dist/installer/config/icon.ico deleted file mode 100644 index 7b2c3eb6f..000000000 Binary files a/dist/installer/config/icon.ico and /dev/null differ diff --git a/dist/installer/config/icon.png b/dist/installer/config/icon.png deleted file mode 100644 index d24abff91..000000000 Binary files a/dist/installer/config/icon.png and /dev/null differ