Files
windows-user-space-emulator/src/samples/test-sample/CMakeLists.txt
2025-01-26 08:28:09 +01:00

16 lines
238 B
CMake

file(GLOB_RECURSE SRC_FILES CONFIGURE_DEPENDS
*.cpp
*.hpp
*.rc
)
list(SORT SRC_FILES)
add_executable(test-sample ${SRC_FILES})
momo_assign_source_group(${SRC_FILES})
target_link_libraries(test-sample PRIVATE
emulator-common
)