diff options
author | DRC <dcommander@users.sourceforge.net> | 2011-02-10 22:21:34 +0000 |
---|---|---|
committer | DRC <dcommander@users.sourceforge.net> | 2011-02-10 22:21:34 +0000 |
commit | b9b9e4fb546905510fce5dcbd7e67f0bcb974c7b (patch) | |
tree | 0af8cc2fa447504c3cd183f45714d0e181bafe17 /CMakeLists.txt | |
parent | 7c854510702dd9d19f1ece823b0dd4bc1ff7f294 (diff) | |
download | tigervnc-b9b9e4fb546905510fce5dcbd7e67f0bcb974c7b.tar.gz tigervnc-b9b9e4fb546905510fce5dcbd7e67f0bcb974c7b.zip |
Include version number in package names
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4284 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 1447ebaf..854f712d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -120,11 +120,11 @@ add_subdirectory(win) # Installer # -set(INST_NAME ${CMAKE_PROJECT_NAME}) - if(64BIT) - set(INST_NAME ${INST_NAME}64) + set(INST_NAME ${CMAKE_PROJECT_NAME}64-${VERSION}) set(INST_DEFS -DWIN64) +else() + set(INST_NAME ${CMAKE_PROJECT_NAME}-${VERSION}) endif() if(MSVC_IDE) |