nativity/test/cc/c_first/CMakeLists.txt
David Gonzalez Martin dfcda18a70 Improve clang integration
LLVM can now be compiled with nat
2024-03-27 16:51:20 -06:00

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)