diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-10-05 19:19:39 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-10-05 19:21:33 +0200 |
commit | af9e0f04828980ac826057ba41b5b2b4b03cc79f (patch) | |
tree | 6e81ab984971775e5f656e3e66693604c840225a /src/Build/CMakeLists.txt | |
parent | 4fe4cbc56842f475ab9229144632ca8ea59cfb20 (diff) | |
download | VeraCrypt-af9e0f04828980ac826057ba41b5b2b4b03cc79f.tar.gz VeraCrypt-af9e0f04828980ac826057ba41b5b2b4b03cc79f.zip |
Linux: modifications to cmake files to use GTK3 on CentOS and change packages names
Diffstat (limited to 'src/Build/CMakeLists.txt')
-rw-r--r-- | src/Build/CMakeLists.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Build/CMakeLists.txt b/src/Build/CMakeLists.txt index c77a7b96..e59cf7ad 100644 --- a/src/Build/CMakeLists.txt +++ b/src/Build/CMakeLists.txt @@ -12,11 +12,11 @@ endif() # - Set PROJECT_NAME and CONFLICT_PACKAGE values if (NOGUI) - set( PROJECT_NAME "VeraCrypt-Console" ) - set( CONFLICT_PACKAGE "VeraCrypt" ) + set( PROJECT_NAME "veracrypt-console" ) + set( CONFLICT_PACKAGE "veracrypt" ) else() - set( PROJECT_NAME "VeraCrypt" ) - set( CONFLICT_PACKAGE "VeraCrypt-Console" ) + set( PROJECT_NAME "veracrypt" ) + set( CONFLICT_PACKAGE "veracrypt-console" ) endif() project(${PROJECT_NAME}) @@ -230,9 +230,9 @@ list(GET FULL_VERSION_LIST 0 VERSION) list(GET FULL_VERSION_LIST 1 RELEASE) string(REPLACE "-" "." RELEASE ${RELEASE}) -set( VENDOR "Idrix" ) +set( VENDOR "IDRIX" ) set( LICENSE "VeraCrypt License" ) -set( CONTACT "VeraCrypt <mounir@idrix.fr>" ) +set( CONTACT "VeraCrypt Team <veracrypt@idrix.fr>" ) set( CPACK_PACKAGE_DESCRIPTION_SUMMARY "Disk encryption with strong security based on TrueCrypt." ) set( CPACK_PACKAGE_DESCRIPTION "This package contains binaries for VeraCrypt, a disk encryption with strong security based on TrueCrypt." ) set( CPACK_PACKAGE_NAME ${PROJECT_NAME} ) @@ -293,7 +293,7 @@ elseif ( ( PLATFORM STREQUAL "CentOS" ) OR ( PLATFORM STREQUAL "openSUSE" ) ) set( CPACK_RPM_PACKAGE_AUTOREQ "no" ) # disable automatic shared libraries dependency detection (most of the time buggy) if ( PLATFORM STREQUAL "CentOS" ) - set( CPACK_RPM_PACKAGE_REQUIRES "fuse, device-mapper, gtk2") + set( CPACK_RPM_PACKAGE_REQUIRES "fuse, device-mapper, gtk3") elseif ( PLATFORM STREQUAL "openSUSE" ) # TODO endif() @@ -314,4 +314,4 @@ elseif ( ( PLATFORM STREQUAL "CentOS" ) OR ( PLATFORM STREQUAL "openSUSE" ) ) endif() -include(CPack)
\ No newline at end of file +include(CPack) |