summaryrefslogtreecommitdiffstats
path: root/cmake/Modules/version.cmake
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-12-16 15:48:31 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-12-16 15:48:31 -0800
commit4e69ff54b0b795fb17630ef678c84c656910062d (patch)
tree06c26fcde6013435c5c04b6b3d913b7f001ad036 /cmake/Modules/version.cmake
parentd4184f852d9d4fedec84273f8fccf7745053e9b1 (diff)
downloadsubsurface-4e69ff54b0b795fb17630ef678c84c656910062d.tar.gz
Cmake: fix version generation
In the cmake module we no longer had a way to get back to the main scripts directory. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'cmake/Modules/version.cmake')
-rw-r--r--cmake/Modules/version.cmake14
1 files changed, 7 insertions, 7 deletions
diff --git a/cmake/Modules/version.cmake b/cmake/Modules/version.cmake
index bd42e3e73..a041ed1fa 100644
--- a/cmake/Modules/version.cmake
+++ b/cmake/Modules/version.cmake
@@ -10,20 +10,20 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
set(VER_OS win)
endif()
execute_process(
- COMMAND sh scripts/get-version ${VER_OS}
- WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
+ COMMAND sh ${CMAKE_TOP_SRC_DIR}/scripts/get-version ${VER_OS}
+ WORKING_DIRECTORY ${CMAKE_TOP_SRC_DIR}
OUTPUT_VARIABLE VERSION_STRING
OUTPUT_STRIP_TRAILING_WHITESPACE
)
execute_process(
- COMMAND sh scripts/get-version linux
- WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
+ COMMAND sh ${CMAKE_TOP_SRC_DIR}/scripts/get-version linux
+ WORKING_DIRECTORY ${CMAKE_TOP_SRC_DIR}
OUTPUT_VARIABLE GIT_VERSION_STRING
OUTPUT_STRIP_TRAILING_WHITESPACE
)
execute_process(
- COMMAND sh scripts/get-version full
- WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
+ COMMAND sh ${CMAKE_TOP_SRC_DIR}/scripts/get-version full
+ WORKING_DIRECTORY ${CMAKE_TOP_SRC_DIR}
OUTPUT_VARIABLE CANONICAL_VERSION_STRING
OUTPUT_STRIP_TRAILING_WHITESPACE
)
@@ -31,7 +31,7 @@ execute_process(
configure_file(${SRC} ${DST} @ONLY)
if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
execute_process(
- COMMAND cat ${CMAKE_SOURCE_DIR}/packaging/windows/subsurface.nsi.in
+ COMMAND cat ${CMAKE_TOP_SRC_DIR}/packaging/windows/subsurface.nsi.in
COMMAND sed -e \"s/VERSIONTOKEN/\${GIT_VERSION_STRING}/\"
COMMAND sed -e \"s/PRODVTOKEN/\${CANONICAL_VERSION_STRING}/\"
OUTPUT_FILE ${CMAKE_BINARY_DIR}/staging/subsurface.nsi