Skip to content

Commit f8ab24e

Browse files
committed
bump 0.1.3
1 parent 16e68d7 commit f8ab24e

File tree

6 files changed

+15
-7
lines changed

6 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## 0.1.3 - 2020-11-27
4+
- Support building with C++11.
5+
- @mrexodia implemented CMake integration and bootstrapping.
6+
- Add dependency on ghc_filesystem which is fetched automatically using FetchContent.
7+
38
## 0.1.2 - 2020-11-20
49
- Add support for target properties.
510
- Add installs.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cmake_minimum_required(VERSION 3.15)
1111

1212
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
1313

14-
set(cmkr_PROJECT_VERSION 0.1.2)
14+
set(cmkr_PROJECT_VERSION 0.1.3)
1515
project(cmkr VERSION ${cmkr_PROJECT_VERSION})
1616

1717
include(FetchContent)

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,19 @@ minimum = "3.15"
3535

3636
[project]
3737
name = "cmkr"
38-
version = "0.1.2"
38+
version = "0.1.3"
3939

4040
[fetch-content]
4141
toml11 = { git = "https://github.com/ToruNiina/toml11" }
42+
filesystem = { git = "https://github.com/gulrak/filesystem" }
4243

4344
[[bin]]
4445
name = "cmkrlib"
4546
type = "static"
4647
sources = ["src/cmake.cpp", "src/gen.cpp", "src/help.cpp", "src/build.cpp", "src/error.cpp"]
4748
include-dirs = ["include"]
48-
features = ["cxx_std_17"]
49-
link-libs = ["toml11::toml11"]
49+
features = ["cxx_std_11"]
50+
link-libs = ["toml11::toml11", "ghc_filesystem"]
5051

5152
[[bin]]
5253
name = "cmkr"

cmake.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ minimum = "3.15"
33

44
[project]
55
name = "cmkr"
6-
version = "0.1.2"
6+
version = "0.1.3"
77

88
[fetch-content]
99
toml11 = { git = "https://github.com/ToruNiina/toml11" }

include/args.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33
#ifdef __cplusplus
44
namespace cmkr {
55
namespace args {
6+
67
const char *handle_args(int argc, char **argv);
7-
}
8+
9+
} // namespace args
810
} // namespace cmkr
911

1012
extern "C" {

src/help.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace cmkr {
44
namespace help {
55

6-
const char *version() noexcept { return "cmkr version 0.1.2"; }
6+
const char *version() noexcept { return "cmkr version 0.1.3"; }
77

88
const char *message() noexcept {
99
return R"lit(

0 commit comments

Comments
 (0)