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
3ba30e03
Commit
3ba30e03
authored
Sep 20, 2020
by
Pierre Aubert
Browse files
Pass from cmake 3.0 to cmake 2.8 for minimum required. Because of centos 7
parent
942f4504
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
CMakeLists.txt
CMakeLists.txt
+1
-1
TESTS/CMakeLists.txt
TESTS/CMakeLists.txt
+1
-1
cmake/CMakeLists.txt
cmake/CMakeLists.txt
+1
-1
doc/CMakeLists.txt
doc/CMakeLists.txt
+1
-1
src/CMakeLists.txt
src/CMakeLists.txt
+1
-1
No files found.
CMakeLists.txt
View file @
3ba30e03
project
(
Phoenix
)
cmake_minimum_required
(
VERSION
3.0
)
cmake_minimum_required
(
VERSION
2.8
)
add_subdirectory
(
cmake
)
...
...
TESTS/CMakeLists.txt
View file @
3ba30e03
project
(
Phoenix
)
cmake_minimum_required
(
VERSION
3.0
)
cmake_minimum_required
(
VERSION
2.8
)
add_definitions
(
-DCMAKE_SOURCE_DIR=
"
${
CMAKE_SOURCE_DIR
}
"
)
...
...
cmake/CMakeLists.txt
View file @
3ba30e03
project
(
Phoenix
)
cmake_minimum_required
(
VERSION
3.0
)
cmake_minimum_required
(
VERSION
2.8
)
include
(
phoenix_base_project.cmake
)
...
...
doc/CMakeLists.txt
View file @
3ba30e03
project
(
Phoenix
)
cmake_minimum_required
(
VERSION
3.0
)
cmake_minimum_required
(
VERSION
2.8
)
phoenix_create_doc
(
PhoenixGraph Doxyfile.cmake
)
...
...
src/CMakeLists.txt
View file @
3ba30e03
project
(
Phoenix
)
cmake_minimum_required
(
VERSION
3.0
)
cmake_minimum_required
(
VERSION
2.8
)
file
(
GLOB headers
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/*.h"
)
install
(
FILES
${
headers
}
DESTINATION include/PhoenixGraph
)
...
...
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