X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=CMakeLists.txt;h=ac908f06e863fa15900fceb596bdde5ca3cfca1b;hb=80262de6f860d9aead05ffa42bdb245c0c888b37;hp=ef94e17f7757eea7a9b8fcc3dc807b67a76fca5d;hpb=b32cd80b243d77cd80e026c7ae73e33ec39b1de9;p=lugaru.git diff --git a/CMakeLists.txt b/CMakeLists.txt index ef94e17..ac908f0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,14 +16,63 @@ if(UNIX AND NOT APPLE) endif() +### Version + +# Version for the current (stable) or next (development) release +set(LUGARU_VERSION_MAJOR 1) +set(LUGARU_VERSION_MINOR 2) +set(LUGARU_VERSION_PATCH 0) + +# MAJOR.MINOR, or MAJOR.MINOR.PATCH if PATCH != 0 +set(LUGARU_VERSION_NUMBER "${LUGARU_VERSION_MAJOR}.${LUGARU_VERSION_MINOR}") +if(LUGARU_VERSION_PATCH) + set(LUGARU_VERSION_NUMBER "${LUGARU_VERSION_NUMBER}.${LUGARU_VERSION_PATCH}") +endif() + +# Set to "" for stable (tagged) builds, "-dev" for dev builds +set(LUGARU_VERSION_SUFFIX "-dev") # development +#set(LUGARU_VERSION_SUFFIX "") # stable + +# Set to 7-char git commit hash if available, otherwise "". +# On stable (tagged) builds, this is ignored. +set(LUGARU_VERSION_HASH "") +if(LUGARU_VERSION_SUFFIX STREQUAL "-dev" AND EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.git) + find_package(Git) + if(GIT_FOUND) + execute_process( + COMMAND ${GIT_EXECUTABLE} rev-parse --short HEAD + WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" + OUTPUT_VARIABLE "LUGARU_VERSION_HASH" + ERROR_QUIET + OUTPUT_STRIP_TRAILING_WHITESPACE) + message(STATUS "Git commit hash: ${LUGARU_VERSION_HASH}") + endif() +endif() + +set(LUGARU_VERSION_RELEASE "" CACHE STRING "Optional release string, e.g. for distro packages release number") + +# Final string built from the above constants, following the scheme: +# MAJOR.MINOR[.PATCH][-dev] [(git HASH)] [[RELEASE]] +set(LUGARU_VERSION_STRING "${LUGARU_VERSION_NUMBER}${LUGARU_VERSION_SUFFIX}") +if(NOT LUGARU_VERSION_HASH STREQUAL "") + set(LUGARU_VERSION_STRING "${LUGARU_VERSION_STRING} (git ${LUGARU_VERSION_HASH})") +endif() +if(NOT LUGARU_VERSION_RELEASE STREQUAL "") + set(LUGARU_VERSION_STRING "${LUGARU_VERSION_STRING} [${LUGARU_VERSION_RELEASE}]") +endif() + +message(STATUS "Version string: ${LUGARU_VERSION_STRING}") +configure_file(${SRCDIR}/Version.hpp.in ${SRCDIR}/Version.hpp ESCAPE_QUOTES @ONLY) + + ### CMake config if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE RelWithDebInfo) endif(NOT CMAKE_BUILD_TYPE) -message("CMake build type: ${CMAKE_BUILD_TYPE}") +message(STATUS "CMake build type: ${CMAKE_BUILD_TYPE}") -set(CMAKE_CXX_FLAGS "-Wall -Wno-parentheses -pedantic --std=gnu++11 ${CMAKE_CXX_FLAGS}") +set(CMAKE_CXX_FLAGS "-Wall -Wextra -Wno-parentheses -pedantic --std=gnu++11 ${CMAKE_CXX_FLAGS}") if(APPLE) set(CMAKE_OSX_ARCHITECTURES "x86_64" CACHE STRING "Build architectures for OSX") @@ -54,6 +103,7 @@ set(LUGARU_SRCS ${SRCDIR}/Environment/Lights.cpp ${SRCDIR}/Environment/Skybox.cpp ${SRCDIR}/Environment/Terrain.cpp + ${SRCDIR}/Graphic/Decal.cpp ${SRCDIR}/Graphic/Models.cpp ${SRCDIR}/Graphic/Sprite.cpp ${SRCDIR}/Graphic/Stereo.cpp @@ -64,7 +114,7 @@ set(LUGARU_SRCS ${SRCDIR}/Level/Dialog.cpp ${SRCDIR}/Level/Hotspot.cpp ${SRCDIR}/Math/Frustum.cpp - ${SRCDIR}/Math/Quaternions.cpp + ${SRCDIR}/Math/XYZ.cpp ${SRCDIR}/Menu/Menu.cpp ${SRCDIR}/Objects/Object.cpp ${SRCDIR}/Objects/Person.cpp @@ -97,6 +147,7 @@ set(LUGARU_H ${SRCDIR}/Environment/Lights.hpp ${SRCDIR}/Environment/Skybox.hpp ${SRCDIR}/Environment/Terrain.hpp + ${SRCDIR}/Graphic/Decal.hpp ${SRCDIR}/Graphic/gamegl.hpp ${SRCDIR}/Graphic/Models.hpp ${SRCDIR}/Graphic/Sprite.hpp @@ -107,8 +158,7 @@ set(LUGARU_H ${SRCDIR}/Level/Dialog.hpp ${SRCDIR}/Level/Hotspot.hpp ${SRCDIR}/Math/Frustum.hpp - ${SRCDIR}/Math/PhysicsMath.hpp - ${SRCDIR}/Math/Quaternions.hpp + ${SRCDIR}/Math/XYZ.hpp ${SRCDIR}/Math/Random.hpp ${SRCDIR}/Menu/Menu.hpp ${SRCDIR}/Objects/Object.hpp