Rename analyzer

This commit is contained in:
momo5502
2024-09-24 20:23:42 +02:00
parent 136ff118d4
commit d57dae589a
10 changed files with 24 additions and 24 deletions

View File

@@ -2,7 +2,7 @@ add_subdirectory(common)
add_subdirectory(emulator)
add_subdirectory(unicorn-emulator)
add_subdirectory(windows-emulator)
add_subdirectory(sample)
add_subdirectory(analyzer)
add_subdirectory(fuzzing-engine)
add_subdirectory(fuzzer)
add_subdirectory(bad-sample)

View File

@@ -0,0 +1,23 @@
file(GLOB_RECURSE SRC_FILES CONFIGURE_DEPENDS
*.cpp
*.hpp
*.rc
)
list(SORT SRC_FILES)
add_executable(analyzer ${SRC_FILES})
momo_assign_source_group(${SRC_FILES})
target_precompile_headers(analyzer PRIVATE std_include.hpp)
target_link_libraries(analyzer PRIVATE
common
reflect
windows-emulator
)
set_property(GLOBAL PROPERTY VS_STARTUP_PROJECT analyzer)
momo_strip_target(analyzer)

View File

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@@ -1,23 +0,0 @@
file(GLOB_RECURSE SRC_FILES CONFIGURE_DEPENDS
*.cpp
*.hpp
*.rc
)
list(SORT SRC_FILES)
add_executable(sample ${SRC_FILES})
momo_assign_source_group(${SRC_FILES})
target_precompile_headers(sample PRIVATE std_include.hpp)
target_link_libraries(sample PRIVATE
common
reflect
windows-emulator
)
set_property(GLOBAL PROPERTY VS_STARTUP_PROJECT sample)
momo_strip_target(sample)