diff options
author | Spp <spp@jorge.gr> | 2013-08-28 15:44:06 +0200 |
---|---|---|
committer | Spp <spp@jorge.gr> | 2013-08-28 15:44:06 +0200 |
commit | 3e2e2108909ac8a89dabe31b1faf7be32591cf49 (patch) | |
tree | afab41126e0bef2306e4f1d33a744f3d005b435c /CMakeLists.txt | |
parent | 7135abf3a0a2bd302774535ea53d50b2fbdde301 (diff) |
Core/Build: Force minimum ACE (5.8.3) and OpenSSL (1.0.0) version detection
Core/Build: Do not ignore command line cmake options: ACE_INCLUDE_DIR, ACE_LIBRARY and OPENSSL_INCLUDE_DIR
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b5db167fa22..c3e8d8d2b11 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -48,6 +48,9 @@ endif() include(CheckPlatform) # basic packagesearching and setup (further support will be needed, this is a preliminary release!) +set(OPENSSL_EXPECTED_VERSION 1.0.0) +set(ACE_EXPECTED_VERSION 5.8.3) + find_package(PCHSupport) find_package(ACE REQUIRED) find_package(OpenSSL REQUIRED) |