mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
897edc10c0
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38691 a592a061-630c-0410-9148-cb99ea01b6c8
28 lines
786 B
CMake
28 lines
786 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>
|
|
#
|
|
|
|
project(frontends)
|
|
|
|
include_directories(${TOP_SRC_DIR}/src/frontends)
|
|
|
|
add_subdirectory(qt4)
|
|
|
|
file(GLOB frontends_sources ${TOP_SRC_DIR}/src/frontends/${LYX_CPP_FILES})
|
|
file(GLOB frontends_headers ${TOP_SRC_DIR}/src/frontends/${LYX_HPP_FILES})
|
|
|
|
|
|
if(NOT LYX_MERGE_FILES)
|
|
add_library(frontends ${library_type} ${frontends_sources} ${frontends_headers})
|
|
else()
|
|
lyx_const_touched_files(_allinone frontends_sources)
|
|
add_library(frontends ${library_type} ${_allinone_files})
|
|
endif()
|
|
|
|
target_link_libraries(frontends ${Lyx_Boost_Libraries})
|
|
|
|
project_source_group("${GROUP_CODE}" frontends_sources frontends_headers)
|
|
|