Skip to content

Commit

Permalink
Fixing static compilation, bumping version number
Browse files Browse the repository at this point in the history
  • Loading branch information
msoos committed Mar 10, 2020
1 parent eefa4bb commit dbf61ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ SET(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
option(BUILD_SHARED_LIBS "Build the shared library" ON)
option(STATICCOMPILE "Compile to static executable" OFF)
if (STATICCOMPILE)
set(Boost_USE_STATIC_LIBS ON)
set(BUILD_SHARED_LIBS OFF)
endif()

Expand Down Expand Up @@ -314,7 +315,7 @@ endfunction()
include(GetGitRevisionDescription)
get_git_head_revision(GIT_REFSPEC GIT_SHA1)

set(BOSPHORUS_FULL_VERSION "2.0.0")
set(BOSPHORUS_FULL_VERSION "3.0.0")
string(REPLACE "." ";" BOSPHORUS_FULL_VERSION ${BOSPHORUS_FULL_VERSION})
SetVersionNumber("PROJECT" ${BOSPHORUS_FULL_VERSION})
MESSAGE(STATUS "PROJECT_VERSION: ${PROJECT_VERSION}")
Expand Down

0 comments on commit dbf61ae

Please sign in to comment.