Skip to content
Snippets Groups Projects
Verified Commit 786068d4 authored by Lars Bilke's avatar Lars Bilke
Browse files

Fix cmake-lint.

parent f4222035
No related branches found
No related tags found
No related merge requests found
...@@ -92,11 +92,11 @@ function(ogs_add_library targetName) ...@@ -92,11 +92,11 @@ function(ogs_add_library targetName)
endforeach() endforeach()
if(ogs_add_library_STATIC) if(ogs_add_library_STATIC)
set(TYPE STATIC) set(type STATIC)
elseif(ogs_add_library_SHARED) elseif(ogs_add_library_SHARED)
set(TYPE SHARED) set(type SHARED)
endif() endif()
add_library(${targetName} ${TYPE} ${files}) add_library(${targetName} ${type} ${files})
target_compile_options( target_compile_options(
${targetName} ${targetName}
PRIVATE # OR does not work with cotire PRIVATE # OR does not work with cotire
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment