Skip to content

Commit

Permalink
Updated CHANGELOG and fixed Windows build.
Browse files Browse the repository at this point in the history
  • Loading branch information
MaikelChan committed Dec 30, 2024
1 parent 5f21920 commit e69eb1f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [1.2.1] - 2024-12-30
### Changed
- Changed config format from JSON to INI.
- Added used libraries in the About window and updated hyperlinks code, since now ImGui supports it natively.
### Fixed
- Fixed some potential crash issues.

## [1.2.0] - 2023-07-23
### Added
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ else()
endif()

if(MSVC)
set_target_properties(${PROJECT_NAME} PROPERTIES LINK_FLAGS "/ENTRY:mainCRTStartup /SUBSYSTEM:CONSOLE")
set_target_properties(${PROJECT_NAME} PROPERTIES LINK_FLAGS "/ENTRY:mainCRTStartup /SUBSYSTEM:WINDOWS")
target_compile_options(${PROJECT_NAME} PRIVATE /W4 /wd4458 /wd4100)
target_link_libraries(${PROJECT_NAME} ${GLFW_Lib} OpenGL::GL)
else()
Expand Down

0 comments on commit e69eb1f

Please sign in to comment.