File tree Expand file tree Collapse file tree 2 files changed +4
-10
lines changed
Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.20 FATAL_ERROR)
22
3- project ("SpaceCheckers" VERSION 1.0.10
3+ project ("SpaceCheckers" VERSION 1.0.11
44 HOMEPAGE_URL "https://github.com/Longwater1234/space-checkers" )
55
66set (CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR} /bin)
@@ -11,13 +11,7 @@ set(CMAKE_CXX_EXTENSIONS OFF)
1111
1212if (NOT APPLE )
1313 set (SFML_STATIC_LIBRARIES TRUE )
14- endif ()
15-
16- # defualt to building in "RELEASE" mode
17- if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES )
18- set (CMAKE_BUILD_TYPE "Release" CACHE STRING
19- "Choose the type of build." FORCE)
20- endif ()
14+ endif ()
2115
2216# write app version into Header
2317configure_file (
@@ -39,7 +33,7 @@ find_package(SFML 2.6 REQUIRED COMPONENTS "graphics" "window" "system")
3933add_subdirectory (dependencies)
4034
4135if (WIN32 )
42- add_executable (SpaceCheckers ${GAME_SRC} ${CMAKE_SOURCE_DIR} /resources/win-icon.rc)
36+ add_executable (SpaceCheckers WIN32 ${GAME_SRC} ${CMAKE_SOURCE_DIR} /resources/win-icon.rc)
4337 target_link_libraries (SpaceCheckers PRIVATE sfml-main)
4438elseif (APPLE )
4539 include (${CMAKE_SOURCE_DIR} /cmake/macbundle.cmake)
Original file line number Diff line number Diff line change 55
66// clang-format off
77namespace chk {
8- constexpr const char * APP_VERSION = " 1.0.10 " ;
8+ constexpr const char * APP_VERSION = " 1.0.11 " ;
99}
1010
1111#endif // APP_VERSION_HPP
You can’t perform that action at this time.
0 commit comments