mirror of
https://github.com/build-cpp/cmkr
synced 2026-06-08 13:22:55 +00:00
bump 0.1.3
This commit is contained in:
@@ -1,5 +1,10 @@
|
||||
# CHANGELOG
|
||||
|
||||
## 0.1.3 - 2020-11-27
|
||||
- Support building with C++11.
|
||||
- @mrexodia implemented CMake integration and bootstrapping.
|
||||
- Add dependency on ghc_filesystem which is fetched automatically using FetchContent.
|
||||
|
||||
## 0.1.2 - 2020-11-20
|
||||
- Add support for target properties.
|
||||
- Add installs.
|
||||
|
||||
+1
-1
@@ -11,7 +11,7 @@ cmake_minimum_required(VERSION 3.15)
|
||||
|
||||
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
||||
|
||||
set(cmkr_PROJECT_VERSION 0.1.2)
|
||||
set(cmkr_PROJECT_VERSION 0.1.3)
|
||||
project(cmkr VERSION ${cmkr_PROJECT_VERSION})
|
||||
|
||||
include(FetchContent)
|
||||
|
||||
@@ -35,18 +35,19 @@ minimum = "3.15"
|
||||
|
||||
[project]
|
||||
name = "cmkr"
|
||||
version = "0.1.2"
|
||||
version = "0.1.3"
|
||||
|
||||
[fetch-content]
|
||||
toml11 = { git = "https://github.com/ToruNiina/toml11" }
|
||||
filesystem = { git = "https://github.com/gulrak/filesystem" }
|
||||
|
||||
[[bin]]
|
||||
name = "cmkrlib"
|
||||
type = "static"
|
||||
sources = ["src/cmake.cpp", "src/gen.cpp", "src/help.cpp", "src/build.cpp", "src/error.cpp"]
|
||||
include-dirs = ["include"]
|
||||
features = ["cxx_std_17"]
|
||||
link-libs = ["toml11::toml11"]
|
||||
features = ["cxx_std_11"]
|
||||
link-libs = ["toml11::toml11", "ghc_filesystem"]
|
||||
|
||||
[[bin]]
|
||||
name = "cmkr"
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@ minimum = "3.15"
|
||||
|
||||
[project]
|
||||
name = "cmkr"
|
||||
version = "0.1.2"
|
||||
version = "0.1.3"
|
||||
|
||||
[fetch-content]
|
||||
toml11 = { git = "https://github.com/ToruNiina/toml11" }
|
||||
|
||||
+3
-1
@@ -3,8 +3,10 @@
|
||||
#ifdef __cplusplus
|
||||
namespace cmkr {
|
||||
namespace args {
|
||||
|
||||
const char *handle_args(int argc, char **argv);
|
||||
}
|
||||
|
||||
} // namespace args
|
||||
} // namespace cmkr
|
||||
|
||||
extern "C" {
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@
|
||||
namespace cmkr {
|
||||
namespace help {
|
||||
|
||||
const char *version() noexcept { return "cmkr version 0.1.2"; }
|
||||
const char *version() noexcept { return "cmkr version 0.1.3"; }
|
||||
|
||||
const char *message() noexcept {
|
||||
return R"lit(
|
||||
|
||||
Reference in New Issue
Block a user