File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -33,12 +33,12 @@ string(REGEX REPLACE "#define OCS_VERSION_PATCH ([0-9]*)" "\\1" VERSION_PATCH "$
3333string (REGEX REPLACE "#define OCS_VERSION_SUFFIX \" ([a-z0-0\- ]*)\" " "\\ 1" VERSION_SUFFIX "${VERSION_SUFFIX} " )
3434
3535# Set the version string and use it to set the version within inst_sge
36- set (OCS_VERSION_STRING "${VERSION_MAJOR} .${VERSION_MINOR} .${VERSION_PATCH}${VERSION_SUFFIX} " )
37- configure_file (
38- "${CMAKE_SOURCE_DIR} /source/dist/inst_sge.in"
39- "${CMAKE_SOURCE_DIR} /source/dist/inst_sge"
40- @ONLY
41- )
36+ # set(OCS_VERSION_STRING "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}${VERSION_SUFFIX}")
37+ # configure_file(
38+ # "${CMAKE_SOURCE_DIR}/source/dist/inst_sge.in"
39+ # "${CMAKE_SOURCE_DIR}/source/dist/inst_sge"
40+ # @ONLY
41+ # )
4242
4343# Set the version string and use it also for the cmake project
4444project (
Original file line number Diff line number Diff line change 4141# set -x
4242
4343SCRIPT_VERSION=" 9"
44- SGE_VERSION=" 9.0.3alpha "
44+ SGE_VERSION=" 9.0.2 "
4545
4646# Reset PATH to a safe value
4747#
Original file line number Diff line number Diff line change 3838// CMakeList.txt and dist/inst_sge will be updated automatically during the next cmake run
3939#define OCS_VERSION_MAJOR 9
4040#define OCS_VERSION_MINOR 0
41- #define OCS_VERSION_PATCH 3
42- #define OCS_VERSION_SUFFIX " alpha "
41+ #define OCS_VERSION_PATCH 2
42+ #define OCS_VERSION_SUFFIX " "
4343
4444const std::string ocs::Version::OCS_VERSION_STRING = std::to_string(OCS_VERSION_MAJOR) + " ."
4545 + std::to_string(OCS_VERSION_MINOR) + " ." + std::to_string(OCS_VERSION_PATCH) + OCS_VERSION_SUFFIX;
You can’t perform that action at this time.
0 commit comments