blob: 0936261b38a453abe3aa4200bf45906691723151 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
#################################################
#
# (C) 2016 Alexander Golubev
# fatzer2 (AT) gmail.com
#
# Improvements and feedback are welcome
#
# This file is released under GPL >= 2
#
#################################################
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_SOURCE_DIR}/kmines/generic
${CMAKE_SOURCE_DIR}/kmines
${CMAKE_SOURCE_DIR}/libtdegames
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
)
##### solver (static) ###########################
tde_add_library( solver STATIC_PIC AUTOMOC
SOURCES bfield.cpp solver.cpp advFastRules.cpp adviseFast.cpp adviseFull.cpp
)
# FIXME: add test targets to cmake
#
# ##### test (test) ###############################
#
# tde_add_executable( test AUTOMOC
# SOURCES test.cpp
# LINK solver-shared tdecore-shared
# )
#
# add_test( NAME test-test
# COMMAND test)
#
#
# ##### testFast (test) ###########################
#
# tde_add_executable( testFast AUTOMOC
# SOURCES testFast.cpp
# LINK solver-shared tdecore-shared
# )
#
# add_test( NAME testFast-test
# COMMAND testFast)
#
#
# ##### testSolve (test) ##########################
#
# tde_add_executable( testSolve AUTOMOC
# SOURCES testSolve.cpp
# LINK solver-shared tdecore-shared tdeui-shared
# )
#
# add_test( NAME testSolve-test
# COMMAND testSolve)
#
#
# ##### testRate (test) ###########################
#
# tde_add_executable( testRate AUTOMOC
# SOURCES testRate.cpp
# LINK solver-shared tdecore-shared tdeui-shared
# )
#
# add_test( NAME testRate-test
# COMMAND testRate)
|