-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakeLists.txt
51 lines (45 loc) · 1.46 KB
/
CMakeLists.txt
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
cmake_minimum_required(VERSION 3.10)
project(bfsf
VERSION 0.1
DESCRIPTION "bfsf planner")
find_package(Rock)
rock_init()
rock_activate_cxx11()
set(CMAKE_CXX_FLAGS -fpic)
include_directories(include)
include_directories(interfaces/ff-wrapped)
include_directories(interfaces/agnostic)
include_directories(external)
add_subdirectory(external/libff)
include_directories(planners/at_bfs_f-ff/src)
find_package(Boost COMPONENTS program_options)
rock_executable(at_bfs_f
SOURCES
include/aptk/bit_set.cxx
interfaces/ff-wrapped/ff_to_aptk.cxx
interfaces/agnostic/action.cxx
interfaces/agnostic/cond_eff.cxx
interfaces/agnostic/conj_comp_prob.cxx
interfaces/agnostic/fl_conj.cxx
interfaces/agnostic/fluent.cxx
interfaces/agnostic/fwd_search_prob.cxx
interfaces/agnostic/landmark_graph.cxx
interfaces/agnostic/match_tree.cxx
interfaces/agnostic/reachability.cxx
interfaces/agnostic/strips_prob.cxx
interfaces/agnostic/strips_state.cxx
interfaces/agnostic/succ_gen.cxx
planners/at_bfs_f-ff/src/main.cxx
src/bit_array.cxx
src/bit_set.cxx
src/memory.cxx
DEPS ff
NOINSTALL
)
target_link_libraries(at_bfs_f ${Boost_LIBRARIES})
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/at_bfs_f
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE
WORLD_READ WORLD_EXECUTE
DESTINATION bin
RENAME bfsf-planner
)