forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cmake fix. Address some of the concerns of microsoft#9 and microsoft#10…
… (microsoft#11) * fix travis * better installation with renamed directories
- Loading branch information
1 parent
3f04827
commit 15b43db
Showing
106 changed files
with
291 additions
and
237 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,27 @@ | ||
cmake_minimum_required(VERSION 2.8) | ||
|
||
|
||
include_directories( ../include ../sample_nodes ) | ||
|
||
# This tutorial demonstrates how to compile statically a tree (no factory) | ||
add_executable(t01_programmatic_tree t01_programmatic_tree.cpp ) | ||
target_link_libraries(t01_programmatic_tree dummy_nodes ${BEHAVIOR_TREE_LIBRARIES} ) | ||
target_link_libraries(t01_programmatic_tree dummy_nodes ${BEHAVIOR_TREE_LIBRARY} ) | ||
|
||
# The plugin libdummy_nodes.so can be linked statically or | ||
# loaded dynamically at run-time. | ||
add_executable(t02_factory_static t02_factory_tree.cpp ) | ||
target_compile_definitions(t02_factory_static PRIVATE "MANUAL_STATIC_LINKING") | ||
target_link_libraries(t02_factory_static ${BEHAVIOR_TREE_LIBRARIES} dummy_nodes ) | ||
target_link_libraries(t02_factory_static ${BEHAVIOR_TREE_LIBRARY} dummy_nodes ) | ||
|
||
add_executable(t02_factory_dynamic t02_factory_tree.cpp ) | ||
target_link_libraries(t02_factory_dynamic ${BEHAVIOR_TREE_LIBRARIES} ) | ||
target_link_libraries(t02_factory_dynamic ${BEHAVIOR_TREE_LIBRARY} ) | ||
|
||
|
||
# This tutorial shows how the difference between Sequence and SequenceStar | ||
add_executable(t03_sequence_star t03_sequence_star.cpp ) | ||
target_link_libraries(t03_sequence_star movebase_node dummy_nodes ${BEHAVIOR_TREE_LIBRARIES} ) | ||
target_link_libraries(t03_sequence_star movebase_node dummy_nodes ${BEHAVIOR_TREE_LIBRARY} ) | ||
|
||
# This tutorial demonstrates how to use blackboards and NodeParameters | ||
add_executable(t04_blackboard t04_blackboard.cpp ) | ||
target_link_libraries(t04_blackboard movebase_node ${BEHAVIOR_TREE_LIBRARIES} ) | ||
target_link_libraries(t04_blackboard movebase_node ${BEHAVIOR_TREE_LIBRARY} ) | ||
|
||
add_executable(t05_crossdoor t05_crossdoor.cpp ) | ||
target_link_libraries(t05_crossdoor crossdoor_nodes ${BEHAVIOR_TREE_LIBRARIES} ) | ||
target_link_libraries(t05_crossdoor crossdoor_nodes ${BEHAVIOR_TREE_LIBRARY} ) |
Oops, something went wrong.