Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/CMakeLists.txt')
-rw-r--r--core/CMakeLists.txt17
1 files changed, 0 insertions, 17 deletions
diff --git a/core/CMakeLists.txt b/core/CMakeLists.txt
index e8a1c1467..489b2825e 100644
--- a/core/CMakeLists.txt
+++ b/core/CMakeLists.txt
@@ -17,8 +17,6 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301, USA.
message("Entering ${CMAKE_CURRENT_SOURCE_DIR}")
-
-cmake_minimum_required(VERSION 3.12)
project(bareos C CXX)
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
@@ -28,13 +26,6 @@ if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
)
endif()
-cmake_policy(SET CMP0054 NEW)
-cmake_policy(SET CMP0057 NEW)
-
-if(POLICY CMP0109)
- cmake_policy(SET CMP0109 NEW)
-endif(POLICY CMP0109)
-
# disable in-source builds
if("${PROJECT_SOURCE_DIR}" STREQUAL "${PROJECT_BINARY_DIR}")
message(FATAL_ERROR "In-source builds are not allowed.")
@@ -422,14 +413,6 @@ if(NOT client-only
# directory it is also not safe on 32-bit systems, so we only build it on
# 64-bit
add_subdirectory(src/droplet)
- if(TARGET droplet)
- set_target_properties(
- droplet
- PROPERTIES VERSION "${BAREOS_NUMERIC_VERSION}"
- SOVERSION "${BAREOS_VERSION_MAJOR}"
- PREFIX "libbareos"
- )
- endif()
endif()
include(BareosGenerateDebianInfo)