From 9b772ff5d8c391aefc2eba39eb1fd46f828ea6fc Mon Sep 17 00:00:00 2001 From: Christoffer Anselm Date: Sat, 24 Dec 2022 22:45:01 +0100 Subject: [PATCH] Configure install step in CMakeLists.txt --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 33c3fab..aacaf3e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -83,3 +83,6 @@ add_library( MaskedOcclusionCulling ${MOC_FILES} ) # Add folder to include path # target_include_directories(MaskedOcclusionCulling PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) + +install(FILES MaskedOcclusionCulling.h FrameRecorder.h CullingThreadpool.h TYPE INCLUDE) +install(TARGETS MaskedOcclusionCulling ARCHIVE LIBRARY RUNTIME)