payload analysis

This commit is contained in:
2026-04-22 17:19:26 +00:00
parent e75471a2d9
commit 2eb76beb1a
9 changed files with 223 additions and 29 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ file(GLOB TEST_SOURCES "*.cc")
foreach(test_src ${TEST_SOURCES})
get_filename_component(test_name ${test_src} NAME_WE)
add_executable(${test_name} ${test_src})
target_link_libraries(${test_name} PRIVATE ${PROJECT_NAME})
target_link_libraries(${test_name} PRIVATE ${PROJECT_NAME}_lib)
if(NOT WIN32)
target_compile_options(${test_name} PRIVATE -fno-exceptions -march=native -maes -msse2 -msse3 -mssse3 -msse4.1 -msse4.2)
endif()