mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-05 00:56:24 +00:00
cd0b5b6ca9
- only precompile boost and stl headers - for qt4 also precompile QtGui and QtGui - don't use one global precomiled header file to get out of the dependency hell git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15517 a592a061-630c-0410-9148-cb99ea01b6c8
24 lines
606 B
CMake
24 lines
606 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(frontends)
|
|
|
|
include_directories(${TOP_SRC_DIR}/src/frontends)
|
|
|
|
add_subdirectory(controllers)
|
|
add_subdirectory(${qt_postfix})
|
|
|
|
|
|
file(GLOB frontends_sources ${TOP_SRC_DIR}/src/frontends/*.C)
|
|
file(GLOB frontends_headers ${TOP_SRC_DIR}/src/frontends/*.h)
|
|
|
|
lyx_add_msvc_pch(frontends)
|
|
|
|
add_library(frontends STATIC ${frontends_sources} ${frontends_headers})
|
|
|
|
project_source_group("${GROUP_CODE}" frontends_sources frontends_headers)
|
|
|