mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 06:57:01 +00:00
c2e67a41ce
This fixes an issue whe compiling with C++11 flags on: The objective-C clang compiler produces an error. This patch waits avoid including specific C++ flags and uses LYX_CPP_SPECIFIC_FLAGS to store the confliciting flags (for the moment, just C++11).
10 lines
265 B
CMake
10 lines
265 B
CMake
# 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>
|
|
#
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${LYX_CXX_SPECIFIC_FLAGS}")
|
|
add_subdirectory(libs)
|
|
|