You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
326 B
9 lines
326 B
5 years ago
|
set(CMAKE_CONFIGURATION_TYPES Debug)
|
||
|
enable_language(C)
|
||
|
enable_language(CXX)
|
||
|
|
||
|
add_executable(DPIAWARE-TGT-BADPARAM-C empty.c)
|
||
|
set_property(TARGET DPIAWARE-TGT-BADPARAM-C PROPERTY VS_DPI_AWARE "Foo")
|
||
|
add_executable(DPIAWARE-TGT-BADPARAM-CXX empty.cxx)
|
||
|
set_property(TARGET DPIAWARE-TGT-BADPARAM-CXX PROPERTY VS_DPI_AWARE "Bar")
|