mirror of
https://github.com/vimpunk/mio.git
synced 2025-12-06 08:46:51 +08:00
8 lines
264 B
CMake
8 lines
264 B
CMake
add_executable(mio.test test.cpp)
|
|
target_link_libraries(mio.test PRIVATE mio::mio)
|
|
add_test(NAME mio.test COMMAND mio.test)
|
|
|
|
add_executable(mio.example example.cpp)
|
|
target_link_libraries(mio.example PRIVATE mio::mio)
|
|
add_test(NAME mio.example COMMAND mio.example)
|