Files
windows-user-space-emulator/src/fuzzer/CMakeLists.txt
2025-03-18 20:22:37 +01:00

23 lines
373 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})
if(NOT MOMO_ENABLE_CLANG_TIDY)
target_precompile_headers(fuzzer PRIVATE std_include.hpp)
endif()
target_link_libraries(fuzzer PRIVATE
fuzzing-engine
windows-emulator
)
momo_strip_target(fuzzer)