diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-12-17 16:34:39 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-12-17 17:06:23 -0800 |
commit | dd1c1359a132a9f6a2c3ffc992d5a1fe47cb0055 (patch) | |
tree | 8fb0abc331ce8f01d84a75380af1e8c83fae8197 /cmake/Modules/HandleVersionGeneration.cmake | |
parent | c7278cd9ed2450d9137cd432f77a135a3730dec4 (diff) | |
download | subsurface-dd1c1359a132a9f6a2c3ffc992d5a1fe47cb0055.tar.gz |
Cmake: successfully create the subsurface.nsi file
More issues with the static cmake files. Again we were missing a variable
and needed less quoting. Additionally there was dead / redundant code.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'cmake/Modules/HandleVersionGeneration.cmake')
-rw-r--r-- | cmake/Modules/HandleVersionGeneration.cmake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmake/Modules/HandleVersionGeneration.cmake b/cmake/Modules/HandleVersionGeneration.cmake index b01d532ee..beb4e49a2 100644 --- a/cmake/Modules/HandleVersionGeneration.cmake +++ b/cmake/Modules/HandleVersionGeneration.cmake @@ -9,10 +9,11 @@ file(COPY cmake/Modules/version.cmake DESTINATION ${CMAKE_BINARY_DIR}) add_custom_target( - version ALL COMMAND ${CMAKE_COMMAND} ${CMAKE_COMMAND} + version ALL COMMAND ${CMAKE_COMMAND} -D SRC=${CMAKE_BINARY_DIR}/version.h.in -D DST=${CMAKE_BINARY_DIR}/ssrf-version.h -D CMAKE_SYSTEM_NAME=${CMAKE_SYSTEM_NAME} -D CMAKE_TOP_SRC_DIR=${CMAKE_SOURCE_DIR} + -D CMAKE_BINARY_DIR=${CMAKE_BINARY_DIR} -P ${CMAKE_BINARY_DIR}/version.cmake ) |