Skip to content

Commit

Permalink
CMakeList: add missing install directive
Browse files Browse the repository at this point in the history
So that `make install` and similar will work.
  • Loading branch information
Grimler91 committed Jan 4, 2025
1 parent b29e7eb commit 3da3eea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.25 FATAL_ERROR)

set(VERSION_MAJOR 3)
set(VERSION_MINOR 0)
set(VERSION_PATCH 0)
set(VERSION_PATCH 1)

set(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")

Expand Down Expand Up @@ -30,6 +30,7 @@ target_compile_definitions("${PACKAGE_NAME}"
PRIVATE "PACKAGE_NAME=\"${PACKAGE_NAME}\""
)

install(TARGETS "${PACKAGE_NAME}" DESTINATION bin)

enable_testing()

Expand Down

0 comments on commit 3da3eea

Please sign in to comment.