7 lines
226 B
CMake
7 lines
226 B
CMake
cmake_minimum_required(VERSION 3.15)
|
|
project(c_first C)
|
|
include(CMakePrintHelpers)
|
|
cmake_print_variables(CMAKE_C_IMPLICIT_LINK_LIBRARIES)
|
|
cmake_print_variables(CMAKE_C_IMPLICIT_LINK_DIRECTORIES)
|
|
add_executable(c_first main.c)
|