12 lines
210 B
CMake
12 lines
210 B
CMake
project(new_thread_example)
|
|
# Example目录的CMakeLists.txt
|
|
|
|
# 添加simple_window示例
|
|
simple_executable()
|
|
|
|
# 链接必要的库
|
|
target_link_libraries(${PROJECT_NAME} PUBLIC
|
|
project_options
|
|
mirage
|
|
)
|