mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-21 04:33:56 +00:00
13 lines
232 B
CMake
13 lines
232 B
CMake
file(GLOB_RECURSE SRC_FILES CONFIGURE_DEPENDS
|
|
*.cpp
|
|
*.hpp
|
|
*.rc
|
|
)
|
|
|
|
list(SORT SRC_FILES)
|
|
|
|
add_executable(bad-sample ${SRC_FILES})
|
|
target_link_libraries(bad-sample PRIVATE emulator-common)
|
|
|
|
momo_assign_source_group(${SRC_FILES})
|