Files
windows-user-space-emulator/src/tools/dump-apiset/CMakeLists.txt
2025-01-15 20:55:15 +01:00

18 lines
270 B
CMake

file(GLOB_RECURSE SRC_FILES CONFIGURE_DEPENDS
*.cpp
*.hpp
*.rc
)
list(SORT SRC_FILES)
add_executable(dump-apiset ${SRC_FILES})
momo_assign_source_group(${SRC_FILES})
target_link_libraries(dump-apiset PRIVATE
emulator-common
)
momo_strip_target(dump-apiset)