Skip to content

Commit

Permalink
Version bump to 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dkormalev committed Apr 25, 2020
1 parent 103bf42 commit 95b583a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 2 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
cmake_minimum_required(VERSION 3.13.0)

project(cefal VERSION 0.1)
set(CEFAL_BUILD_WITH_DUMMY 1)
project(cefal VERSION 0.1.0)

add_library(cefal INTERFACE)
add_library(cefal::cefal ALIAS cefal)
Expand All @@ -11,7 +10,7 @@ target_include_directories(cefal INTERFACE
$<INSTALL_INTERFACE:include>
)

if(CEFAL_BUILD_WITH_DUMMY)
if(CEFAL_BUILD_DUMMY)
message("-- cefal: Building with dummy unit")
add_executable(cefal_dummy src/dummy.cpp)
target_link_libraries(cefal_dummy PRIVATE cefal::cefal)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
[![Release](https://img.shields.io/github/release/dkormalev/cefal.svg)](https://github.com/dkormalev/cefal/releases/latest)

# (Concepts-enabled) Functional Abstraction Layer for C++
Cefal is a C++20 header-only library with abstractions over basic functional programming concepts (and using C++20 concepts).
Expand Down

0 comments on commit 95b583a

Please sign in to comment.