]> git.lyx.org Git - features.git/commitdiff
Cmake build: Remove obsolete cmake control files
authorKornel Benko <kornel@lyx.org>
Thu, 3 Dec 2020 01:45:43 +0000 (02:45 +0100)
committerKornel Benko <kornel@lyx.org>
Thu, 3 Dec 2020 01:46:48 +0000 (02:46 +0100)
3rdparty/boost/libs/CMakeLists.txt [deleted file]
3rdparty/boost/libs/regex/CMakeLists.txt [deleted file]
3rdparty/boost/libs/regex/src/CMakeLists.txt [deleted file]

diff --git a/3rdparty/boost/libs/CMakeLists.txt b/3rdparty/boost/libs/CMakeLists.txt
deleted file mode 100644 (file)
index 84da81e..0000000
+++ /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, <syntheticpp@gmx.net>
-#
-
-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 (file)
index 0b09b77..0000000
+++ /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, <syntheticpp@gmx.net>
-#
-
-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 (executable)
index 5ec05a2..0000000
+++ /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)
-
-
-
-
-