File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -55,14 +55,14 @@ source_group_by_dir(${CMAKE_CURRENT_SOURCE_DIR} SRC_LIST)
5555source_group_by_dir(${CMAKE_CURRENT_SOURCE_DIR} HEADER_LIST)
5656source_group_by_dir(${CMAKE_CURRENT_SOURCE_DIR} HOOK_LIST)
5757
58- add_library (emmy_core MODULE ${SRC_LIST} ${HEADER_LIST} )
58+ add_library (emmy_core SHARED ${SRC_LIST} ${HEADER_LIST} )
5959set_target_properties (emmy_core PROPERTIES PREFIX "" )
6060if (WIN32 )
6161 add_dependencies (emmy_core uv_a)
6262 target_link_libraries (emmy_core uv_a)
6363
6464 # emmy_hook
65- add_library (emmy_hook MODULE ${SRC_LIST} ${HEADER_LIST} ${HOOK_LIST} ${SHARED_LIST} )
65+ add_library (emmy_hook SHARED ${SRC_LIST} ${HEADER_LIST} ${HOOK_LIST} ${SHARED_LIST} )
6666 target_compile_definitions (emmy_hook PRIVATE EMMY_BUILD_AS_HOOK)
6767 add_dependencies (emmy_hook EasyHook uv_a)
6868 target_link_libraries (emmy_hook EasyHook uv_a)
You can’t perform that action at this time.
0 commit comments