From 3480bb3f2e0917cf4992525b4930bdac47e45829 Mon Sep 17 00:00:00 2001 From: Simon Richter Date: Sun, 19 Nov 2017 21:38:18 +0100 Subject: [PATCH] Install headers --- CMakeLists.txt | 1 + headers/CMakeLists.txt | 1 + 2 files changed, 2 insertions(+) create mode 100644 headers/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 94de3ce..1093513 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -73,4 +73,5 @@ if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_C_COMPILER_ID MATCHES "Clang") endif() endif() +add_subdirectory(headers) add_subdirectory(src) diff --git a/headers/CMakeLists.txt b/headers/CMakeLists.txt new file mode 100644 index 0000000..025d8d2 --- /dev/null +++ b/headers/CMakeLists.txt @@ -0,0 +1 @@ +install(FILES openvr_capi.h openvr_driver.h openvr.h DESTINATION include)