mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-27 15:11:01 +00:00
12 lines
205 B
CMake
12 lines
205 B
CMake
file(GLOB_RECURSE SRC_FILES CONFIGURE_DEPENDS
|
|
*.cpp
|
|
*.hpp
|
|
*.rc
|
|
)
|
|
|
|
list(SORT SRC_FILES)
|
|
|
|
add_library(emulator ${SRC_FILES})
|
|
|
|
target_include_directories(emulator INTERFACE "${CMAKE_CURRENT_LIST_DIR}")
|