]> git.lyx.org Git - lyx.git/blob - src/tests/CMakeLists.txt
Revert "Objective-C compililation support with cmake and C++11"
[lyx.git] / src / tests / CMakeLists.txt
1 # This file is part of LyX, the document processor.
2 # Licence details can be found in the file COPYING.
3 #
4 # Copyright (c) 2013 Kornel Benko kornel@lyx.org
5 #
6
7 set(check_layout_SOURCES)
8 foreach(_f insets/InsetLayout.cpp Color.cpp Counters.cpp Floating.cpp
9        FloatList.cpp FontInfo.cpp Layout.cpp LayoutFile.cpp Lexer.cpp
10        ModuleList.cpp Spacing.cpp TextClass.cpp tests/check_layout.cpp
11        tests/boost.cpp tests/dummy_functions.cpp)
12   list(APPEND check_layout_SOURCES "${TOP_SRC_DIR}/src/${_f}")
13 endforeach()
14
15 include_directories(${TOP_SRC_DIR}/src/support/tests)
16
17 add_executable(check_layout ${check_layout_SOURCES})
18
19 target_link_libraries(check_layout support
20   ${Lyx_Boost_Libraries} ${QT_QTGUI_LIBRARY} ${QT_QTCORE_LIBRARY}
21   ${ZLIB_LIBRARY} ${ICONV_LIBRARY})
22
23 add_dependencies(lyx_run_tests check_layout)
24 set_target_properties(check_layout PROPERTIES FOLDER "tests/src")
25
26 file(GLOB layout_files RELATIVE "${TOP_SRC_DIR}/lib/layouts" "${TOP_SRC_DIR}/lib/layouts/*.layout")
27 list(SORT layout_files)
28 foreach(bns ${layout_files}) 
29   string(REPLACE ".layout" "" bn ${bns})
30
31   add_test(NAME "check_layout/${bns}"
32     COMMAND check_layout "${TOP_SRC_DIR}/lib/layouts/${bn}")
33   settestlabel("check_layout/${bns}" "layout")
34 endforeach()