mirror of
https://github.com/claunia/clion-custom-defined-compiler-examples.git
synced 2025-12-16 19:24:48 +00:00
7 lines
134 B
CMake
Executable File
7 lines
134 B
CMake
Executable File
cmake_minimum_required(VERSION 3.21)
|
|
project(CMake-OpenWatcom2 C)
|
|
|
|
set(CMAKE_C_STANDARD 90)
|
|
|
|
add_executable(CMake-OpenWatcom2 main.c)
|