mirror of
https://gitee.com/apaki/cmake_demo.git
synced 2025-05-18 04:11:37 +08:00
11 lines
158 B
Plaintext
11 lines
158 B
Plaintext
|
|
cmake_minimum_required(VERSION 3.8)
|
|
|
|
set(CMAKE_C_COMPILER "D:\\Program Files (x86)\\TDM-GCC-64\\bin\\gcc.exe")
|
|
|
|
|
|
project(demo)
|
|
|
|
add_executable(demo main.c)
|
|
|