mirror of
https://gitee.com/apaki/cmake_demo.git
synced 2025-05-18 04:11:37 +08:00
8 lines
118 B
Plaintext
8 lines
118 B
Plaintext
|
|
cmake_minimum_required(VERSION 3.8)
|
|
|
|
project(demo)
|
|
aux_source_directory(. DIR_SRC)
|
|
|
|
add_executable(demo ${DIR_SRC})
|