Files
windows-user-space-emulator/src/windows-gdb-stub/CMakeLists.txt
2025-01-20 20:09:16 +01:00

21 lines
377 B
CMake

file(GLOB_RECURSE SRC_FILES CONFIGURE_DEPENDS
*.cpp
*.hpp
*.rc
)
list(SORT SRC_FILES)
add_library(windows-gdb-stub ${SRC_FILES})
momo_assign_source_group(${SRC_FILES})
target_link_libraries(windows-gdb-stub PUBLIC
gdb-stub
windows-emulator
)
target_include_directories(windows-gdb-stub INTERFACE "${CMAKE_CURRENT_LIST_DIR}")
momo_strip_target(windows-gdb-stub)