Files
windows-user-space-emulator/src/fuzzer/CMakeLists.txt
Elias Bachaalany a16c1dd654 renamed dependency 'common' to emulator-common
also made it mandatory when using the 'windows-emulator' dep
2025-01-12 12:31:53 -08:00

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)