https://github.com/Kitware/CMake
Raw File
Tip revision: a4231943117f5ba3dd0fdc6c8b1824334162b69f authored by Brad King on 04 June 2019, 16:29:02 UTC
Merge branch 'ctest_xml_tweaks' into release-3.15
Tip revision: a423194
CMakeLists.txt
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)
back to top