Skip to content

Commit

Permalink
cppm version up 0.1.1 -> 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
injae committed Sep 15, 2021
1 parent 9586bcb commit 8abcaf9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
7 changes: 5 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set(CPPM_VERSION 0.0.13)
include(cmake/cppm_loader.cmake)
cppm_project()

project(serdepp VERSION 0.1.1 LANGUAGES C CXX)
project(serdepp VERSION 0.1.2 LANGUAGES C CXX)
cppm_setting()
cppm_cxx_standard(17)
cppm_compiler_option(DEFAULT)
Expand All @@ -20,7 +20,10 @@ find_cppkg(magic_enum 0.7.3 MODULE magic_enum::magic_enum TYPE lib)
find_cppkg(nameof 0.10.0 MODULE nameof::nameof TYPE lib)


cppm_target_define(serdepp INTERFACE)
cppm_target_define(serdepp STATIC
SOURCES
src/to_static.cpp
)

cppm_examples_area()
if(SERDEPP_BUILD_EXAMPLES)
Expand Down
8 changes: 4 additions & 4 deletions cppm.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "serdepp"
version = "0.1.1"
version = "0.1.2"
description = "c++ universal serialize deserialize library like rust serde"
#tool-version = "dev"

[lib]
name = "serdepp"
#type = "static"
#source= ["src/to_static.cpp"]
type = "header-only"
type = "static"
#type = "header-only"
source= ["src/to_static.cpp"]


[[example]]
Expand Down

0 comments on commit 8abcaf9

Please sign in to comment.