Browse Source

Release library version 2020.2.2

- add cmake debug configuration
- update README.md file by adding change log and new
version
Patrick-Christopher Mattulat 3 years ago
parent
commit
1eb2f0fbe8
2 changed files with 9 additions and 3 deletions
  1. 7 1
      CMakeLists.txt
  2. 2 2
      README.md

+ 7 - 1
CMakeLists.txt

@@ -4,7 +4,7 @@
 
 cmake_minimum_required(VERSION 3.17)
 set(PROJECT_NAME ls_std)
-set(RELEASE_VERSION 2020.2.1)
+set(RELEASE_VERSION 2020.2.2)
 project(${PROJECT_NAME})
 
 ##########################################################
@@ -121,9 +121,15 @@ set(TEST_FILES
 message("${PROJECT_NAME}: Building version ${RELEASE_VERSION}...")
 
 add_executable(${PROJECT_NAME}_test ${TEST_FILES})
+
 add_library("${PROJECT_NAME}_${RELEASE_VERSION}_static" STATIC ${SOURCE_FILES})
+set_target_properties("${PROJECT_NAME}_${RELEASE_VERSION}_static" PROPERTIES DEBUG_POSTFIX "_d")
+
 add_library("${PROJECT_NAME}_${RELEASE_VERSION}_shared" SHARED ${SOURCE_FILES})
+set_target_properties("${PROJECT_NAME}_${RELEASE_VERSION}_shared" PROPERTIES DEBUG_POSTFIX "_d")
+
 add_library("${PROJECT_NAME}_${RELEASE_VERSION}_module" MODULE ${SOURCE_FILES})
+set_target_properties("${PROJECT_NAME}_${RELEASE_VERSION}_module" PROPERTIES DEBUG_POSTFIX "_d")
 
 ##########################################################
 # Linking

+ 2 - 2
README.md

@@ -1,4 +1,4 @@
-# Lynar Studios - Standard Library 2020.2.1 #
+# Lynar Studios - Standard Library 2020.2.2 #
 
 This is a cross-platform standard library written in C++ which provides basic functionality and implementation, like:
  
@@ -16,7 +16,7 @@ It has been tested on __Windows__, __Linux__ and __MacOS__ systems.
 
 ### Change Log ###
 
-- fixed include paths of header files
+- added debug build configuration
 
 ### Documentation ###