We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f3100c commit 3f7ee56Copy full SHA for 3f7ee56
luzer/CMakeLists.txt
@@ -42,8 +42,11 @@ add_library(custom_mutator SHARED ${custom_mutator_lib_source})
42
target_include_directories(custom_mutator PRIVATE ${LUA_INCLUDE_DIR})
43
target_link_libraries(custom_mutator PRIVATE ${LUA_LIBRARIES})
44
target_link_libraries(custom_mutator PRIVATE luzer_impl)
45
-set_target_properties(custom_mutator PROPERTIES VERSION ${PROJECT_VERSION})
46
-set_target_properties(custom_mutator PROPERTIES SOVERSION 1)
+set_target_properties(custom_mutator PROPERTIES
+ LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
47
+ VERSION ${PROJECT_VERSION}
48
+ SOVERSION 1
49
+)
50
51
if(ENABLE_TESTING)
52
add_subdirectory(tests)
0 commit comments