refresh e50354d3ef3d92779d3796094388f4161b20460c
[tagua/yd.git] / src / variants / shogi / CMakeLists.txt
blob2a6c30f364616a8e0348f87b0c0c8209544339a4
1 set(taguashogilib_SRCS
2   behaviour.cpp
4 kde4_add_library(taguashogilib SHARED ${taguashogilib_SRCS})
5 target_link_libraries(taguashogilib
6   taguacore
7   ${KDE4_KDECORE_LIBS}
9 install(TARGETS taguashogilib DESTINATION ${LIB_INSTALL_DIR})
11 set(taguashogi_SRCS
12   shogi.cpp
14   types/king.cpp
15   types/gold.cpp
16   types/silver.cpp
17   types/knight.cpp
18   types/lance.cpp
19   types/pawn.cpp
20   types/rook.cpp
21   types/bishop.cpp
23   types/narigin.cpp
24   types/narikei.cpp
25   types/narikyo.cpp
26   types/tokin.cpp
27   types/dragonking.cpp
28   types/dragonhorse.cpp
30   colors.cpp
31   moveserializer.cpp
32 #  san.cpp
33   state.cpp
34   validator.cpp
37 include_directories(${CMAKE_SOURCE_DIR}/src/)
39 kde4_add_plugin(taguashogi ${taguashogi_SRCS})
41 target_link_libraries(taguashogi
42   taguacore
43   taguashogilib
44   ${KDE4_KDECORE_LIBS}
47 install(TARGETS taguashogi DESTINATION ${PLUGIN_INSTALL_DIR})
48 install(FILES tagua-shogi.desktop DESTINATION ${SERVICES_INSTALL_DIR})