Skip to content

Commit

Permalink
cppm_loader fix
Browse files Browse the repository at this point in the history
  • Loading branch information
injae committed Feb 28, 2022
1 parent 40cfc7a commit af8a402
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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.3 LANGUAGES C CXX)
project(serdepp VERSION 0.1.4 LANGUAGES C CXX)
cppm_setting()
cppm_cxx_standard(17)
cppm_compiler_option(DEFAULT)
Expand Down
2 changes: 1 addition & 1 deletion cmake/cppm_loader.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/cmake/cppm-version.cmake AND (ENABLE_INLIN
set(CPPM_TOOL "cppm-tools-${CPPM_TOOLS_VERSION}")
set(CPPM_CORE ${CMAKE_CURRENT_SOURCE_DIR}/cmake/${CPPM_TOOL})
list(APPEND CMAKE_MODULE_PATH "${CPPM_CORE}")
include(${CPPM_TOOL}/core_load)
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/${CPPM_TOOL}/core_load.cmake)
else()
if(NOT DEFINED IS_CPPM_LOADER_LOADED)
set(_install_script "${CPPM_LOADER_CACHE}/install-script")
Expand Down
2 changes: 1 addition & 1 deletion cppm.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serdepp"
version = "0.1.3"
version = "0.1.4"
description = "c++ universal serialize deserialize library like rust serde"
standard="17"
#tool-version = "dev"
Expand Down

0 comments on commit af8a402

Please sign in to comment.