lyx_mirror/development/cmake/boost/libs/CMakeLists.txt
Peter Kümmel 615d42d357 TR1: use std::tr1 regex with msvc10
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34725 a592a061-630c-0410-9148-cb99ea01b6c8
2010-06-29 17:09:40 +00:00

17 lines
299 B
CMake

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