Files
clang-p2996/libc/examples/hello_world/CMakeLists.txt
Mark de Wever 92523a35a8 Revert "[CMake] Bumps minimum version to 3.20.0."
Some build bots have not been updated to the new minimal CMake version.
Reverting for now and ping the buildbot owners.

This reverts commit 44c6b905f8.
2023-03-04 18:28:13 +01:00

9 lines
133 B
CMake

project(hello_world)
cmake_minimum_required(VERSION 3.13.4)
include(../examples.cmake)
add_example(
hello_world
hello_world.c
)