X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=development%2Fcmake%2Fboost%2Flibs%2Ffilesystem%2FCMakeLists.txt;h=8a559f3f393ac37695572649a654539ad963c404;hb=6040a5faf6e6ca8fb88315984a6f3c09c8fcef80;hp=aa9738007c218f5c7c6ccf9b4259f266b4bf87fd;hpb=0f40c394cec4365e03cd40a0620695e2a2816250;p=lyx.git diff --git a/development/cmake/boost/libs/filesystem/CMakeLists.txt b/development/cmake/boost/libs/filesystem/CMakeLists.txt index aa9738007c..8a559f3f39 100644 --- a/development/cmake/boost/libs/filesystem/CMakeLists.txt +++ b/development/cmake/boost/libs/filesystem/CMakeLists.txt @@ -1,11 +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 exception.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() +