blob: f024defc21eaf6879c34a7db15b6eeb824564d33 (
plain)
1
2
3
4
5
6
|
cmake_minimum_required(VERSION 3.12)
project(OutName C)
add_executable(OutName main.c)
set_property(TARGET OutName PROPERTY PREFIX exe.)
set_property(TARGET OutName PROPERTY SUFFIX .exe)
|