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.
20 lines
302 B
20 lines
302 B
2 years ago
|
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
|
||
|
)
|