Skip to content

Commit

Permalink
fix project name; switch default build to MinSizeRel
Browse files Browse the repository at this point in the history
  • Loading branch information
woodpeck committed Jul 14, 2021
1 parent 38fe5b2 commit 6296238
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
#
#-----------------------------------------------------------------------------

project(osmi_adminbounds)
project(osmi_pubtrans3)

set(OSMI_SIMPLE_VIEWS_VERSION_MAJOR 0)
set(OSMI_SIMPLE_VIEWS_VERSION_MINOR 0)
Expand Down Expand Up @@ -95,11 +95,11 @@ if(CMAKE_BUILD_TYPE STREQUAL "Dev")
add_definitions(${OSMIUM_WARNING_OPTIONS})
endif()

# Force RelWithDebInfo build type if none was given
# Force MinSizeRel build type if none was given
if(CMAKE_BUILD_TYPE)
set(build_type ${CMAKE_BUILD_TYPE})
else()
set(build_type "RelWithDebInfo")
set(build_type "MinSizeRel")
endif()

set(CMAKE_BUILD_TYPE ${build_type}
Expand Down

0 comments on commit 6296238

Please sign in to comment.