Skip to content

Commit

Permalink
Bump to 0.2.24
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexodia committed Jun 12, 2023
1 parent bdd9d39 commit 5bfa03d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cmake.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cmkr-include = false

[project]
name = "cmkr"
version = "0.2.23"
version = "0.2.24"
description = "CMakeLists generator from TOML"
languages = ["CXX"]
include-after = [
Expand Down
2 changes: 1 addition & 1 deletion cmake/cmkr.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ include_guard()

# Change these defaults to point to your infrastructure if desired
set(CMKR_REPO "https://github.com/build-cpp/cmkr" CACHE STRING "cmkr git repository" FORCE)
set(CMKR_TAG "v0.2.23" CACHE STRING "cmkr git tag (this needs to be available forever)" FORCE)
set(CMKR_TAG "v0.2.24" CACHE STRING "cmkr git tag (this needs to be available forever)" FORCE)
set(CMKR_COMMIT_HASH "" CACHE STRING "cmkr git commit hash (optional)" FORCE)

# To bootstrap/generate a cmkr project: cmake -P cmkr.cmake
Expand Down
1 change: 0 additions & 1 deletion src/project_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -780,7 +780,6 @@ const Project *Project::root() const {
bool Project::cmake_minimum_version(int major, int minor) const {
// NOTE: this code is like pulling teeth, sorry
auto root_version = root()->cmake_version;
puts(root_version.c_str());
auto range_index = root_version.find("...");
if (range_index != std::string::npos) {
root_version.resize(range_index);
Expand Down

0 comments on commit 5bfa03d

Please sign in to comment.