Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# realpath - Changes <!-- omit in toc -->


## 0.1.2 - 27th August 2026

* Fixed **cmake/BuildType.cmake** so the default `CMAKE_BUILD_TYPE` is set correctly in the CMake cache (`set(CMAKE_BUILD_TYPE … CACHE …)` instead of `set(CACHE CMAKE_BUILD_TYPE …)`);


## 0.1.1 - 23rd August 2026

* Documented the Windows-only program, its **STLSoft** dependency, and its CMake build, installation, and testing workflows in **README.md** and **INSTALL.md**;
Expand Down
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

| Date | News Item |
| -------------------- | ---------------- |
| 27th August 2026 | [0.1.2 released](https://github.com/sistools/realpath/releases/tag/0.1.2) |
| 23rd August 2026 | [0.1.1 released](https://github.com/sistools/realpath/releases/tag/0.1.1) |
| 16th August 2026 | [0.1.0 released](https://github.com/sistools/realpath/releases/tag/0.1.0) |
| 3rd August 2026 | 0.0.3 released |
Expand Down
6 changes: 2 additions & 4 deletions cmake/BuildType.cmake
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@

# ######################################################################## #
# File: /cmake/BuildType.cmake
#
# Purpose: CMake module file (for BuildType)
#
# Created: 16th October 2019
# Updated: 25th October 2024
# Updated: 27th August 2026
#
# ######################################################################## #

Expand Down Expand Up @@ -45,7 +44,7 @@ if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)

message(STATUS "Setting build type to '${DEFAULT_BUILD_TYPE}' as none was specified.")

set(CACHE CMAKE_BUILD_TYPE "${DEFAULT_BUILD_TYPE}"
set(CMAKE_BUILD_TYPE "${DEFAULT_BUILD_TYPE}" CACHE
STRING "Choose the type of build." FORCE
)

Expand All @@ -56,4 +55,3 @@ if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
endif()

# ############################## end of file ############################# #

2 changes: 1 addition & 1 deletion realpath.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

#define REALPATH_VER_MAJOR 0
#define REALPATH_VER_MINOR 1
#define REALPATH_VER_PATCH 0
#define REALPATH_VER_PATCH 2


int main(int argc, char* argv[])
Expand Down
Loading