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
PhoenixNotify
Commits
85ae5a77
Commit
85ae5a77
authored
Jan 26, 2021
by
Pierre Aubert
Browse files
Ready to version 1.5.0
parent
0894b471
Pipeline
#102450
failed with stages
in 4 minutes and 59 seconds
Changes
3
Pipelines
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
523 additions
and
3 deletions
+523
-3
CMakeLists.txt
CMakeLists.txt
+1
-1
LICENSE
LICENSE
+520
-0
cmake/phoenix_base_project.cmake
cmake/phoenix_base_project.cmake
+2
-2
No files found.
CMakeLists.txt
View file @
85ae5a77
...
...
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 2.8)
add_subdirectory
(
cmake
)
phoenix_base_project
(
"PhoenixNotify"
"1.
4.1
"
phoenix_base_project
(
"PhoenixNotify"
"1.
5.0
"
"Library to ease the use of os notifications"
"https://gitlab.in2p3.fr/CTA-LAPP/PHOENIX_LIBS/PhoenixNotify"
)
...
...
LICENSE
0 → 100644
View file @
85ae5a77
This diff is collapsed.
Click to expand it.
cmake/phoenix_base_project.cmake
View file @
85ae5a77
...
...
@@ -32,9 +32,9 @@ function(phoenix_base_project programName programVersion programDescritpion prog
message
(
STATUS
"Build for tests COVERAGE"
)
set
(
CTEST_COVERAGE_COMMAND
"gcov"
)
set
(
SELF_TESTS_MODE yes
)
set
(
CMAKE_CXX_FLAGS
"--std=c++11 -Wall -Werror -g -O0 -fprofile-arcs -ftest-coverage"
PARENT_SCOPE
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
--std=c++11 -Wall -Werror -g -O0 -fprofile-arcs -ftest-coverage"
PARENT_SCOPE
)
else
()
set
(
CMAKE_CXX_FLAGS
"--std=c++11 -Wall -Werror -g -O2"
PARENT_SCOPE
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
--std=c++11 -Wall -Werror -g -O2"
PARENT_SCOPE
)
endif
()
add_definitions
(
-D__PROGRAM_VERSION__=
"
${
PROGRAM_VERSION
}
"
)
...
...
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