mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-19 11:43:56 +00:00
22 lines
354 B
CMake
22 lines
354 B
CMake
file(GLOB_RECURSE SRC_FILES CONFIGURE_DEPENDS
|
|
*.cpp
|
|
*.hpp
|
|
*.rc
|
|
)
|
|
|
|
list(SORT SRC_FILES)
|
|
|
|
add_library(fuzzing-engine ${SRC_FILES})
|
|
|
|
momo_assign_source_group(${SRC_FILES})
|
|
|
|
target_link_libraries(fuzzing-engine PRIVATE
|
|
common
|
|
)
|
|
|
|
target_include_directories(fuzzing-engine INTERFACE
|
|
"${CMAKE_CURRENT_LIST_DIR}"
|
|
)
|
|
|
|
momo_strip_target(fuzzing-engine)
|