mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-15 19:20:44 -06:00
Add three tests in Tests/RunCMake/PrintHelpers, meant to verify basic functionality of the module. Tests are: * Variables: Test the results of a cmake_print_variables() call on two variables set within the test script. * Properties: Test cmake_print_properties() calls on a pair of SOURCES and a pair of TARGETS, printing some basic properties. * PropertiesSources: Specifically verify the results of a cmake_print_properties() call for the SOURCES property of a TARGET. Prior to the fix introduced alongside these tests, it was a known bug that such a request caused a FATAL_ERROR.
20 lines
302 B
CMake
20 lines
302 B
CMake
set_property(SOURCE rot13.c PROPERTY LANGUAGE C)
|
|
|
|
add_library(rot13 SHARED rot13.c rot13.h)
|
|
|
|
include(CMakePrintHelpers)
|
|
|
|
cmake_print_properties(
|
|
TARGETS rot13
|
|
PROPERTIES
|
|
SOURCES
|
|
POSITION_INDEPENDENT_CODE
|
|
)
|
|
|
|
cmake_print_properties(
|
|
SOURCES rot13.c
|
|
PROPERTIES
|
|
LOCATION
|
|
LANGUAGE
|
|
)
|