From d81b50a8ace40ca669c42558874c84bbe65d921c Mon Sep 17 00:00:00 2001 From: Patrix Date: Wed, 13 Mar 2024 05:21:46 +0100 Subject: [PATCH] Moved add_subdirectory call as a last one in CMakeLists.txt --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4a7a279..defae9b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,12 +23,12 @@ target_include_directories(${PROJECT_NAME} "src/" ) -add_subdirectory(dependencies) - if(DEFINED OUT_FILE_SUFFIX) set_target_properties(${PROJECT_NAME} PROPERTIES PREFIX "" SUFFIX ".${OUT_FILE_SUFFIX}${CMAKE_SHARED_LIBRARY_SUFFIX}" ) -endif() \ No newline at end of file +endif() + +add_subdirectory(dependencies) \ No newline at end of file