mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-02 12:19:54 -05:00
11 lines
199 B
CMake
11 lines
199 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project (EmptyProperty)
|
|
|
|
set_property(DIRECTORY APPEND
|
|
PROPERTY
|
|
COMPILE_DEFINITIONS)
|
|
|
|
include(CTest)
|
|
|
|
add_executable(EmptyProperty EmptyProperty.cxx)
|