From 5a4f12981200e438ccbd368da66af226856dd5cc Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Wed, 27 Jul 2022 15:40:30 +0200 Subject: [PATCH] Make occtwrapper buildable stand-alone --- src/occt_wrapper/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/occt_wrapper/CMakeLists.txt b/src/occt_wrapper/CMakeLists.txt index 84f91f2f50..9f4989b72f 100644 --- a/src/occt_wrapper/CMakeLists.txt +++ b/src/occt_wrapper/CMakeLists.txt @@ -49,5 +49,7 @@ target_include_directories(OCCTWrapper PRIVATE ${CMAKE_CURRENT_BINARY_DIR}) target_include_directories(OCCTWrapper PUBLIC ${OpenCASCADE_INCLUDE_DIR}) target_link_libraries(OCCTWrapper ${OCCT_LIBS}) +include(GNUInstallDirs) + install(TARGETS OCCTWrapper DESTINATION "${CMAKE_INSTALL_BINDIR}")