Skip to content

Commit

Permalink
ci: add dependencies, improve cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Oct 27, 2024
1 parent d69e171 commit ef704a5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ project(
### Library options ###
option(PUARA_GESTURES_ENABLE_TESTING "Enable building and running Puara gestures tests" ON)

### Dependencies ###
find_package(Boost REQUIRED)

### Main library ###
add_library(puara_gestures
3rdparty/IMU_Sensor_Fusion/imu_orientation.h
Expand Down Expand Up @@ -38,6 +41,7 @@ add_library(puara_gestures
)

target_include_directories(puara_gestures PUBLIC include 3rdparty)
target_compile_features(puara_gestures PUBLIC cxx_std_17)

### Tests ###
if(PUARA_GESTURES_ENABLE_TESTING)
Expand Down

0 comments on commit ef704a5

Please sign in to comment.