X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=development%2Fcmake%2Fboost%2Flibs%2Ffilesystem%2FCMakeLists.txt;h=8a559f3f393ac37695572649a654539ad963c404;hb=6040a5faf6e6ca8fb88315984a6f3c09c8fcef80;hp=797d6818cff6564620d1204a7479295c57bc061a;hpb=7c00f14cc1297317273c28f481e304690c616848;p=lyx.git diff --git a/development/cmake/boost/libs/filesystem/CMakeLists.txt b/development/cmake/boost/libs/filesystem/CMakeLists.txt old mode 100755 new mode 100644 index 797d6818cf..8a559f3f39 --- a/development/cmake/boost/libs/filesystem/CMakeLists.txt +++ b/development/cmake/boost/libs/filesystem/CMakeLists.txt @@ -1,12 +1,24 @@ +# This file is part of LyX, the document processor. +# Licence details can be found in the file COPYING. +# +# Copyright (c) 2006, Peter Kümmel, +# + project(boost_filesystem) set(boost_filesystem_sources - convenience.cpp exception.cpp - operations_posix_windows.cpp - path_posix_windows.cpp -) + operations.cpp + path.cpp + portability.cpp) lyx_add_path(boost_filesystem_sources ${TOP_SRC_DIR}/boost/libs/filesystem/src) -add_library(boost_filesystem STATIC ${boost_filesystem_sources}) \ No newline at end of file +if(NOT MERGE_FILES) + add_library(boost_filesystem STATIC ${boost_filesystem_sources}) +else() + add_definitions(-D_WIN32_WINNT=0x500) + lyx_const_touched_files(_allinone boost_filesystem_sources) + add_library(boost_filesystem STATIC ${_allinone_files}) +endif() +