From 11931b85fdd9a5b418b8631a2f0f4bc3161f968d Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Tue, 7 Aug 2018 21:22:54 +0200 Subject: [PATCH] closes https://github.com/assimp/assimp/issues/2075: Make inject of debug postfix an option, so you can swich it off. --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index d949badb949..29df64f544e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -105,6 +105,10 @@ OPTION ( BUILD_DOCS "Build documentation using Doxygen." OFF ) +OPTION( INJECT_DEBUG_POSTFIX + "Inject debug postfix in .a/.so lib names" + ON +) IF (IOS) IF (NOT CMAKE_BUILD_TYPE)