Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
CTA-LAPP
PHOENIX_LIBS
PhoenixGraph
Commits
9d63dfc9
Commit
9d63dfc9
authored
May 11, 2021
by
Pierre Aubert
Browse files
Remove useless cmake command
parent
b0ca1c27
Pipeline
#118847
passed with stages
in 1 minute and 1 second
Changes
11
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
0 additions
and
17 deletions
+0
-17
TESTS/CMakeLists.txt
TESTS/CMakeLists.txt
+0
-2
TESTS/TEST_DOT/CMakeLists.txt
TESTS/TEST_DOT/CMakeLists.txt
+0
-1
TESTS/TEST_DOT_LOOP/CMakeLists.txt
TESTS/TEST_DOT_LOOP/CMakeLists.txt
+0
-1
TESTS/TEST_DOT_REMOVE/CMakeLists.txt
TESTS/TEST_DOT_REMOVE/CMakeLists.txt
+0
-1
TESTS/TEST_DOT_STR/CMakeLists.txt
TESTS/TEST_DOT_STR/CMakeLists.txt
+0
-1
TESTS/TEST_DOT_TOTAL_LOOP/CMakeLists.txt
TESTS/TEST_DOT_TOTAL_LOOP/CMakeLists.txt
+0
-1
TESTS/TEST_PNTREE_LIGHT/CMakeLists.txt
TESTS/TEST_PNTREE_LIGHT/CMakeLists.txt
+0
-2
cmake/CMakeLists.txt
cmake/CMakeLists.txt
+0
-2
doc/CMakeLists.txt
doc/CMakeLists.txt
+0
-2
src/CMakeLists.txt
src/CMakeLists.txt
+0
-2
src/Tree/CMakeLists.txt
src/Tree/CMakeLists.txt
+0
-2
No files found.
TESTS/CMakeLists.txt
View file @
9d63dfc9
project
(
Phoenix
)
cmake_minimum_required
(
VERSION 2.8
)
add_definitions
(
-DCMAKE_SOURCE_DIR=
"
${
CMAKE_SOURCE_DIR
}
"
)
...
...
TESTS/TEST_DOT/CMakeLists.txt
View file @
9d63dfc9
project
(
Phoenix
)
add_executable
(
test_graph_to_dot main.cpp
)
target_link_libraries
(
test_graph_to_dot phoenix_graph
)
...
...
TESTS/TEST_DOT_LOOP/CMakeLists.txt
View file @
9d63dfc9
project
(
Phoenix
)
add_executable
(
test_graph_to_dot_loop main.cpp
)
target_link_libraries
(
test_graph_to_dot_loop phoenix_graph
)
...
...
TESTS/TEST_DOT_REMOVE/CMakeLists.txt
View file @
9d63dfc9
project
(
Phoenix
)
add_executable
(
test_graph_to_dot_remove main.cpp
)
target_link_libraries
(
test_graph_to_dot_remove phoenix_graph
)
...
...
TESTS/TEST_DOT_STR/CMakeLists.txt
View file @
9d63dfc9
project
(
Phoenix
)
add_executable
(
test_graph_to_dot_str main.cpp
)
target_link_libraries
(
test_graph_to_dot_str phoenix_graph
)
...
...
TESTS/TEST_DOT_TOTAL_LOOP/CMakeLists.txt
View file @
9d63dfc9
project
(
Phoenix
)
add_executable
(
test_graph_to_dot_total_loop main.cpp
)
target_link_libraries
(
test_graph_to_dot_total_loop phoenix_graph
)
...
...
TESTS/TEST_PNTREE_LIGHT/CMakeLists.txt
View file @
9d63dfc9
project
(
Phoenix
)
cmake_minimum_required
(
VERSION 3.0
)
add_executable
(
test_pntreelight main.cpp
)
target_link_libraries
(
test_pntreelight phoenix_graph
)
...
...
cmake/CMakeLists.txt
View file @
9d63dfc9
project
(
Phoenix
)
cmake_minimum_required
(
VERSION 2.8
)
include
(
createLinuxPackages.cmake
)
include
(
phoenix_base_project.cmake
)
...
...
doc/CMakeLists.txt
View file @
9d63dfc9
project
(
Phoenix
)
cmake_minimum_required
(
VERSION 2.8
)
phoenix_create_doc
(
PhoenixGraph Doxyfile.cmake
)
...
...
src/CMakeLists.txt
View file @
9d63dfc9
project
(
Phoenix
)
cmake_minimum_required
(
VERSION 2.8
)
file
(
GLOB_RECURSE graph_sources
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/*.cpp"
)
...
...
src/Tree/CMakeLists.txt
View file @
9d63dfc9
project
(
Phoenix
)
cmake_minimum_required
(
VERSION 2.8
)
file
(
GLOB headers
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/*.h"
)
install
(
FILES
${
headers
}
DESTINATION include/PhoenixGraph/Tree
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment