9 lines
254 B
CMake
9 lines
254 B
CMake
add_library(custom_event_plugin SHARED
|
|
custom_event_plugin.cpp
|
|
)
|
|
set_target_properties(custom_event_plugin PROPERTIES PREFIX "")
|
|
|
|
add_library(http_event_plugin SHARED
|
|
http_event_plugin.cpp
|
|
)
|
|
set_target_properties(http_event_plugin PROPERTIES PREFIX "") |