mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-23 21:51:02 +00:00
21 lines
332 B
CMake
21 lines
332 B
CMake
file(GLOB_RECURSE SRC_FILES CONFIGURE_DEPENDS
|
|
*.cpp
|
|
*.hpp
|
|
*.rc
|
|
)
|
|
|
|
list(SORT SRC_FILES)
|
|
|
|
add_executable(fuzzer ${SRC_FILES})
|
|
|
|
momo_assign_source_group(${SRC_FILES})
|
|
|
|
target_precompile_headers(fuzzer PRIVATE std_include.hpp)
|
|
|
|
target_link_libraries(fuzzer PRIVATE
|
|
fuzzing-engine
|
|
windows-emulator
|
|
)
|
|
|
|
momo_strip_target(fuzzer)
|