Skip to content

Commit

Permalink
added install step to cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
jpihl committed Jan 19, 2021
1 parent 1fc3da5 commit 73d0db5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
cmake_minimum_required (VERSION 3.10)
project(bitter)

file(GLOB bitter_headers ./src/bitter/*.hpp)

add_library(bitter INTERFACE)
add_library(steinwurf::bitter ALIAS bitter)

target_include_directories(bitter INTERFACE src/)

install(FILES ${bitter_headers} DESTINATION ${CMAKE_INSTALL_PREFIX}/include/bitter)
2 changes: 1 addition & 1 deletion NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ detailed list of every change, see the Git log.

Latest
------
* tbd
* Minor: Added install step to cmake.

6.0.1
-----
Expand Down

0 comments on commit 73d0db5

Please sign in to comment.