mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-24 15:38:54 -06:00
8 lines
227 B
CMake
8 lines
227 B
CMake
enable_language(C)
|
|
|
|
add_library(lib1 STATIC empty.c)
|
|
set_property(TARGET lib1 PROPERTY INTERFACE_HEADER_SETS "a")
|
|
|
|
# Error happens at configure-time, so this doesn't help.
|
|
target_sources(lib1 INTERFACE FILE_SET a TYPE HEADERS)
|