Initial implementation of a new tagua_wrapped.
[tagua/yd.git] / tests / hlvariants / CMakeLists.txt
blob06884b53d5023f937ba7baf4710495a231bd2e64
1 set(main_dir "../../src")
3 SET(hl_SRC
4   prototype/chess/piece.cpp
5   prototype/chess/move.cpp
6   prototype/chess/gamestate.cpp
7   prototype/chess/variant.cpp
9   ../cppunit_main.cpp
10   boardtest.cpp
11   chesspiecetest.cpp
12   chessgamestatetest.cpp
13   chessmovetest.cpp
14   chesslegalitytest.cpp
15   chesswrappedtest.cpp
18 include_directories(
19   ${KDE4_INCLUDES}
20   ${Boost_INCLUDE_DIRS}
21   ${CMAKE_CURRENT_BINARY_DIR}
22   ${CMAKE_CURRENT_SOURCE_DIR}/${main_dir}
25 add_executable(hl_test ${hl_SRC})
26 target_link_libraries(hl_test taguaprivate ${CPPUNIT_LIBRARIES})
28 add_test(hl hl_test)