diff --git a/CMakeLists.txt b/CMakeLists.txt index 0b7950e4..093874c6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,4 +7,6 @@ include_directories(libinjection/src) add_subdirectory(libinjection/src) add_dart_native_extension(angel_security_native lib/src/native/angel_security.c) target_link_libraries(angel_security_native injection) -install(TARGETS angel_security_native injection LIBRARY DESTINATION "${CMAKE_CURRENT_LIST_DIR}/lib/src") \ No newline at end of file +install(TARGETS angel_security_native injection + ARCHIVE DESTINATION "${CMAKE_CURRENT_LIST_DIR}/lib/src" + LIBRARY DESTINATION "${CMAKE_CURRENT_LIST_DIR}/lib/src") \ No newline at end of file diff --git a/lib/src/libangel_security_native.dylib b/lib/src/libangel_security_native.dylib new file mode 100755 index 00000000..491974f6 Binary files /dev/null and b/lib/src/libangel_security_native.dylib differ diff --git a/lib/src/libinjection.dylib b/lib/src/libinjection.dylib new file mode 100755 index 00000000..21a6862a Binary files /dev/null and b/lib/src/libinjection.dylib differ diff --git a/libinjection/src/CMakeLists.txt b/libinjection/src/CMakeLists.txt index 873cace9..46985be7 100644 --- a/libinjection/src/CMakeLists.txt +++ b/libinjection/src/CMakeLists.txt @@ -1,3 +1,3 @@ -add_library(injection +add_library(injection SHARED libinjection.h libinjection_sqli.h libinjection_sqli_data.h libinjection_sqli.c) \ No newline at end of file