mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-22 21:21:03 +00:00
16 lines
246 B
CMake
16 lines
246 B
CMake
file(GLOB_RECURSE SRC_FILES CONFIGURE_DEPENDS
|
|
*.cpp
|
|
*.hpp
|
|
*.rc
|
|
)
|
|
|
|
list(SORT SRC_FILES)
|
|
|
|
add_executable(test-sample ${SRC_FILES})
|
|
|
|
if(MINGW)
|
|
target_link_libraries(test-sample PRIVATE ws2_32)
|
|
endif()
|
|
|
|
momo_assign_source_group(${SRC_FILES})
|