lyx_mirror/development/cmake/boost/libs/CMakeLists.txt
Peter Kümmel 103310c401 TR1: check in cmake for GCC version, fallback in checktr1.h for other build systems, no support of regex in gcc 4.4
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34728 a592a061-630c-0410-9148-cb99ea01b6c8
2010-06-30 08:47:41 +00:00

19 lines
313 B
CMake

# This file is part of LyX, the document processor.
# Licence details can be found in the file COPYING.
#
# Copyright (c) 2010, Peter Kümmel, <syntheticpp@gmx.net>
#
project(boost)
if(LYX_USE_TR1_REGEX)
message(STATUS "Using TR1 regex")
else()
add_subdirectory(regex)
endif()
add_subdirectory(signals)