Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
partons
core
partons
Commits
8edda36b
Commit
8edda36b
authored
Jul 20, 2021
by
Pawel Sznajder
Browse files
update version and improve CMake
parent
30364e24
Changes
5
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
8edda36b
...
...
@@ -26,9 +26,17 @@ file(READ ${CMAKE_SOURCE_DIR}/data/version.txt VERSION_STR)
# strip spaces
string
(
STRIP
${
VERSION_STR
}
VERSION_STR
)
# get major and minor versions
string
(
REGEX REPLACE
"
\\
.[0-9]*"
""
PARTONS_VERSION_MAJOR
${
VERSION_STR
}
)
string
(
REGEX REPLACE
"[0-9]*
\\
."
""
PARTONS_VERSION_MINOR
${
VERSION_STR
}
)
# get major, minor and patch versions
string
(
REGEX MATCH
"^[0-9]*
\\
."
TMP_STR
${
VERSION_STR
}
)
string
(
REGEX REPLACE
"
\\
."
""
PARTONS_VERSION_MAJOR
${
TMP_STR
}
)
string
(
REGEX MATCH
"
\\
.[0-9]*
\\
."
TMP_STR
${
VERSION_STR
}
)
string
(
REGEX REPLACE
"
\\
."
""
PARTONS_VERSION_MINOR
${
TMP_STR
}
)
string
(
REGEX MATCH
"
\\
.[0-9]*$"
TMP_STR
${
VERSION_STR
}
)
string
(
REGEX REPLACE
"
\\
."
""
PARTONS_VERSION_PATCH
${
TMP_STR
}
)
message
(
"-- PARTONS version is: "
${
PARTONS_VERSION_MAJOR
}
"."
${
PARTONS_VERSION_MINOR
}
"."
${
PARTONS_VERSION_PATCH
}
)
# configure
configure_file
(
${
CMAKE_SOURCE_DIR
}
/cmake/Version/PartonsVersion.h_in
${
CMAKE_SOURCE_DIR
}
/include/partons/PartonsVersion.h
)
...
...
@@ -43,14 +51,39 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON)
# FIND LIBRARIES ===========================================================================
# find libraries: additional modules
set
(
CMAKE_MODULE_PATH
${
CMAKE_MODULE_PATH
}
"
${
CMAKE_SOURCE_DIR
}
/cmake/Modules/"
)
# find libraries: Qt
find_package
(
Qt5 COMPONENTS Core Sql XmlPatterns
RE
QUI
RED
)
find_package
(
Qt5 COMPONENTS Core Sql XmlPatterns QUI
ET
)
# add some useful macros and variables
add_definitions
(
${
QT_DEFINITIONS
}
)
if
(
${
Qt5_FOUND
}
)
# find libraries: additional modules
set
(
CMAKE_MODULE_PATH
${
CMAKE_MODULE_PATH
}
"
${
CMAKE_SOURCE_DIR
}
/cmake/Modules/"
)
find_package
(
Qt5Widgets
)
message
(
"-- Found Qt5: "
${
Qt5Widgets_VERSION
}
)
set
(
QT_LIBRARY_CORE
"Qt5::Core"
)
set
(
QT_LIBRARY_SQL
"Qt5::Sql"
)
set
(
QT_LIBRARY_XML
"Qt5::XmlPatterns"
)
set
(
QT_VERSION
${
Qt5Widgets_VERSION
}
)
else
()
find_package
(
Qt4 COMPONENTS QtCore QtSql QtXmlPatterns
)
if
(
${
Qt4_FOUND
}
)
set
(
QT_LIBRARY_CORE
"Qt4::QtCore"
)
set
(
QT_LIBRARY_SQL
"Qt4::QtSql"
)
set
(
QT_LIBRARY_XML
"Qt4::QtXmlPatterns"
)
set
(
QT_VERSION
${
QT_VERSION_MAJOR
}
.
${
QT_VERSION_MINOR
}
.
${
QT_VERSION_PATCH
}
)
else
()
message
(
FATAL_ERROR
"Neither Qt5 nor Qt4 found in this system"
)
endif
()
endif
()
# find libraries: ElementaryUtils
find_package
(
ElementaryUtils REQUIRED
)
...
...
@@ -79,17 +112,17 @@ include_directories(include)
# ENVIRONMENT VARIABLES ========================================================================
execute_process
(
COMMAND bash -c
"cd ../../elementary-utils/; git branch
--show-current
"
OUTPUT_VARIABLE ELEMUTILS_BRANCH
)
execute_process
(
COMMAND bash -c
"cd ../../elementary-utils/; git branch
| grep '\*' | cut -d ' ' -f2
"
OUTPUT_VARIABLE ELEMUTILS_BRANCH
)
execute_process
(
COMMAND bash -c
"cd ../../elementary-utils/; git rev-parse HEAD;"
OUTPUT_VARIABLE ELEMUTILS_REVISION
)
string
(
REGEX REPLACE
"
\n
$"
""
ELEMUTILS_BRANCH
"
${
ELEMUTILS_BRANCH
}
"
)
string
(
REGEX REPLACE
"
\n
$"
""
ELEMUTILS_REVISION
"
${
ELEMUTILS_REVISION
}
"
)
execute_process
(
COMMAND bash -c
"cd ../../numa/; git branch
--show-current
"
OUTPUT_VARIABLE NUMA_BRANCH
)
execute_process
(
COMMAND bash -c
"cd ../../numa/; git branch
| grep '\*' | cut -d ' ' -f2
"
OUTPUT_VARIABLE NUMA_BRANCH
)
execute_process
(
COMMAND bash -c
"cd ../../numa/; git rev-parse HEAD;"
OUTPUT_VARIABLE NUMA_REVISION
)
string
(
REGEX REPLACE
"
\n
$"
""
NUMA_BRANCH
"
${
NUMA_BRANCH
}
"
)
string
(
REGEX REPLACE
"
\n
$"
""
NUMA_REVISION
"
${
NUMA_REVISION
}
"
)
execute_process
(
COMMAND bash -c
"git branch
--show-current
"
OUTPUT_VARIABLE PARTONS_BRANCH
)
execute_process
(
COMMAND bash -c
"git branch
| grep '\*' | cut -d ' ' -f2
"
OUTPUT_VARIABLE PARTONS_BRANCH
)
execute_process
(
COMMAND bash -c
"git rev-parse HEAD"
OUTPUT_VARIABLE PARTONS_REVISION
)
string
(
REGEX REPLACE
"
\n
$"
""
PARTONS_BRANCH
"
${
PARTONS_BRANCH
}
"
)
string
(
REGEX REPLACE
"
\n
$"
""
PARTONS_REVISION
"
${
PARTONS_REVISION
}
"
)
...
...
@@ -124,8 +157,6 @@ add_library(
target_link_libraries
(
PARTONS
${
QT_LIBRARIES
}
${
SFML_LIBRARIES
}
...
...
@@ -141,11 +172,11 @@ target_link_libraries(
${
LHAPDF_LIBRARIES
}
Qt5::Core
Qt5::Sql
Qt5::XmlPatterns
${
QT_LIBRARY_CORE
}
${
QT_LIBRARY_SQL
}
${
QT_LIBRARY_XML
}
)
# install
...
...
data/config/.gitignore
0 → 100644
View file @
8edda36b
/environment_configuration.dat
data/config/environment_configuration.dat
deleted
100644 → 0
View file @
30364e24
# environment_configuration.dat
# The content of this file is stored in the database during the insertion of data,
# so latter one can easily reproduce the used computational environment.
# You can fill the field system with the content of the command "uname -a",
# and fill the other fields with the software versions.
# E.g. g++: 4.9.2
system:
g++:
qt:
smfl:
eigen3:
cln:
gsl:
elementary-utils:
numa:
partons:
data/config/environment_configuration.dat.in
View file @
8edda36b
...
...
@@ -4,7 +4,7 @@
system: @CMAKE_SYSTEM_NAME@ @CMAKE_SYSTEM_VERSION@
g++: @CMAKE_CXX_COMPILER_ID@ @CMAKE_CXX_COMPILER_VERSION@
qt: @Q
t5Core
_VERSION@
qt: @Q
T
_VERSION@
smfl: @SFML_VERSION@
cln: @CLN_VERSION@
gsl: @GSL_VERSION@
...
...
data/version.txt
View file @
8edda36b
2
.0
3.0
.0
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