mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-18 03:13:55 +00:00
12 lines
236 B
CMake
12 lines
236 B
CMake
file(GLOB_RECURSE SRC_FILES CONFIGURE_DEPENDS
|
|
mini-gdbstub/lib/*.c
|
|
)
|
|
|
|
list(SORT SRC_FILES)
|
|
|
|
add_library(mini-gdbstub ${SRC_FILES})
|
|
|
|
target_include_directories(mini-gdbstub PUBLIC
|
|
"${CMAKE_CURRENT_LIST_DIR}/mini-gdbstub/include"
|
|
)
|