2011-05-10 17:44:41 +00:00
|
|
|
|
# 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()
|
2012-10-22 16:12:29 +00:00
|
|
|
|
set_target_properties(frontends PROPERTIES FOLDER "applications/LyX")
|
2011-05-10 17:44:41 +00:00
|
|
|
|
|
|
|
|
|
target_link_libraries(frontends ${Lyx_Boost_Libraries})
|
|
|
|
|
|
|
|
|
|
project_source_group("${GROUP_CODE}" frontends_sources frontends_headers)
|
|
|
|
|
|
2013-08-07 13:00:03 +00:00
|
|
|
|
add_subdirectory(tests)
|