From: Kornel Benko Date: Thu, 3 Dec 2020 01:45:43 +0000 (+0100) Subject: Cmake build: Remove obsolete cmake control files X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=a839b40358adac9b78aed036b62e139c003386eb;p=features.git Cmake build: Remove obsolete cmake control files --- diff --git a/3rdparty/boost/libs/CMakeLists.txt b/3rdparty/boost/libs/CMakeLists.txt deleted file mode 100644 index 84da81e65e..0000000000 --- a/3rdparty/boost/libs/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -# This file is part of LyX, the document processor. -# Licence details can be found in the file COPYING. -# -# Copyright (c) 2010-2011 Peter Kümmel, -# - -project(boost) - -message(STATUS "Using std regex") diff --git a/3rdparty/boost/libs/regex/CMakeLists.txt b/3rdparty/boost/libs/regex/CMakeLists.txt deleted file mode 100644 index 0b09b77927..0000000000 --- a/3rdparty/boost/libs/regex/CMakeLists.txt +++ /dev/null @@ -1,26 +0,0 @@ -# This file is part of LyX, the document processor. -# Licence details can be found in the file COPYING. -# -# Copyright (c) 2006-2011 Peter Kümmel, -# - -project(boost_regex) - -set(boost_regex_sources - cpp_regex_traits.cpp - c_regex_traits.cpp - cregex.cpp - fileiter.cpp - instances.cpp - regex.cpp - regex_raw_buffer.cpp - regex_traits_defaults.cpp - static_mutex.cpp - w32_regex_traits.cpp) - -lyx_add_path(boost_regex_sources ${TOP_SRC_DIR}/3rdparty/boost/libs/regex/src) - -add_library(boost_regex STATIC ${boost_regex_sources}) - -set_target_properties(boost_regex PROPERTIES FOLDER "3rd_party") - diff --git a/3rdparty/boost/libs/regex/src/CMakeLists.txt b/3rdparty/boost/libs/regex/src/CMakeLists.txt deleted file mode 100755 index 5ec05a2e47..0000000000 --- a/3rdparty/boost/libs/regex/src/CMakeLists.txt +++ /dev/null @@ -1,39 +0,0 @@ -# -# Copyright Troy D. Straszheim -# -# Distributed under the Boost Software License, Version 1.0. -# See http://www.boost.org/LICENSE_1_0.txt -# -# Look for the ICU library. If we find it, we'll compile in support for ICU -include(FindICU) -set(BOOST_REGEX_LIBRARIES) -if (ICU_FOUND AND ICU_I18N_FOUND) - add_definitions(-DBOOST_HAS_ICU=1) - include_directories(${ICU_INCLUDE_DIRS}) - set(BOOST_REGEX_LIBRARIES ${ICU_LIBRARIES} ${ICU_I18N_LIBRARIES}) -endif (ICU_FOUND AND ICU_I18N_FOUND) - -boost_add_library(boost_regex - c_regex_traits.cpp - cpp_regex_traits.cpp - cregex.cpp - fileiter.cpp - instances.cpp - posix_api.cpp - regex.cpp - regex_debug.cpp - regex_raw_buffer.cpp - regex_traits_defaults.cpp - static_mutex.cpp - w32_regex_traits.cpp - wc_regex_traits.cpp - wide_posix_api.cpp - winstances.cpp - usinstances.cpp - LINK_LIBS ${BOOST_REGEX_LIBRARIES} - SHARED_COMPILE_FLAGS -DBOOST_REGEX_DYN_LINK=1) - - - - -