Lines 1-31
Link Here
|
1 |
--- application/CMakeLists.txt.orig 2017-12-18 00:19:43 UTC |
|
|
2 |
+++ application/CMakeLists.txt |
3 |
@@ -27,11 +27,11 @@ set(MultiMC_PASTE_EE_API_KEY "" CACHE ST |
4 |
set(MultiMC_ANALYTICS_ID "" CACHE STRING "ID you can get from Google analytics") |
5 |
|
6 |
#### Check the current Git commit and branch |
7 |
-include(GetGitRevisionDescription) |
8 |
-get_git_head_revision(MultiMC_GIT_REFSPEC MultiMC_GIT_COMMIT) |
9 |
+#include(GetGitRevisionDescription) |
10 |
+#get_git_head_revision(MultiMC_GIT_REFSPEC MultiMC_GIT_COMMIT) |
11 |
|
12 |
-message(STATUS "Git commit: ${MultiMC_GIT_COMMIT}") |
13 |
-message(STATUS "Git refspec: ${MultiMC_GIT_REFSPEC}") |
14 |
+#message(STATUS "Git commit: ${MultiMC_GIT_COMMIT}") |
15 |
+#message(STATUS "Git refspec: ${MultiMC_GIT_REFSPEC}") |
16 |
|
17 |
set(MultiMC_RELEASE_VERSION_NAME "${MultiMC_VERSION_MAJOR}.${MultiMC_VERSION_MINOR}.${MultiMC_VERSION_HOTFIX}") |
18 |
|
19 |
@@ -390,9 +390,9 @@ elseif(MultiMC_LAYOUT_REAL STREQUAL "lin |
20 |
install(PROGRAMS package/linux/MultiMC DESTINATION ${BUNDLE_DEST_DIR}) |
21 |
|
22 |
elseif(MultiMC_LAYOUT_REAL STREQUAL "lin-system") |
23 |
- set(MultiMC_BINARY_DEST_DIR "usr/bin" CACHE STRING "Relative path from packaging root to the binary directory") |
24 |
- set(MultiMC_LIBRARY_DEST_DIR "usr/lib" CACHE STRING "Relative path from packaging root to the library directory") |
25 |
- set(MultiMC_SHARE_DEST_DIR "usr/share/multimc" CACHE STRING "Relative path from packaging root to the shared data directory") |
26 |
+ set(MultiMC_BINARY_DEST_DIR "usr/local/bin" CACHE STRING "Relative path from packaging root to the binary directory") |
27 |
+ set(MultiMC_LIBRARY_DEST_DIR "usr/local/lib" CACHE STRING "Relative path from packaging root to the library directory") |
28 |
+ set(MultiMC_SHARE_DEST_DIR "usr/local/share/multimc" CACHE STRING "Relative path from packaging root to the shared data directory") |
29 |
set(MultiMC_APP_BINARY_NAME "multimc" CACHE STRING "Name of the MultiMC binary for the purposes of linux packaging") |
30 |
set(JARS_DEST_DIR "${MultiMC_SHARE_DEST_DIR}") |
31 |
|