@@ -10,7 +10,7 @@ Imported Targets
10
10
11
11
The following :prop_tgt:`IMPORTED` TARGETS may be defined:
12
12
13
- ``SwiftCore ``
13
+ ``swiftCore ``
14
14
15
15
Hint Variables
16
16
^^^^^^^^^^^^^^
@@ -63,8 +63,8 @@ if(APPLE)
63
63
NAMES "libswiftCore.tbd"
64
64
HINTS
65
65
"${CMAKE_OSX_SYSROOT} /usr/lib/swift" )
66
- add_library (SwiftCore SHARED IMPORTED GLOBAL )
67
- set_target_properties (SwiftCore PROPERTIES
66
+ add_library (swiftCore SHARED IMPORTED GLOBAL )
67
+ set_target_properties (swiftCore PROPERTIES
68
68
IMPORTED_IMPLIB "${SwiftCore_IMPLIB} "
69
69
INTERFACE_INCLUDE_DIRECTORIES "${SwiftCore_INCLUDE_DIR} " )
70
70
find_package_handle_standard_args (SwiftCore DEFAULT_MSG
@@ -78,7 +78,7 @@ elseif(LINUX)
78
78
find_library (SwiftCore_LIBRARY
79
79
NAMES "libswiftCore.a"
80
80
HINTS "${Swift_SDKROOT} /usr/lib/swift_static/linux-static" )
81
- add_library (SwiftCore STATIC IMPORTED GLOBAL )
81
+ add_library (swiftCore STATIC IMPORTED GLOBAL )
82
82
else ()
83
83
find_path (SwiftCore_INCLUDE_DIR
84
84
"Swift.swiftmodule"
@@ -87,9 +87,9 @@ elseif(LINUX)
87
87
find_library (SwiftCore_LIBRARY
88
88
NAMES "libswiftCore.so"
89
89
HINTS "${Swift_SDKROOT} /usr/lib/swift/linux" )
90
- add_library (SwiftCore SHARED IMPORTED GLOBAL )
90
+ add_library (swiftCore SHARED IMPORTED GLOBAL )
91
91
endif ()
92
- set_target_properties (SwiftCore PROPERTIES
92
+ set_target_properties (swiftCore PROPERTIES
93
93
IMPORTED_LOCATION "${SwiftCore_LIBRARY} "
94
94
INTERFACE_INCLUDE_DIRECTORIES "${SwiftCore_INCLUDE_DIR} " )
95
95
find_package_handle_standard_args (SwiftCore DEFAULT_MSG
@@ -108,8 +108,8 @@ elseif(WIN32)
108
108
"$ENV{SDKROOT} /usr/lib/swift/${SwiftCore_PLATFORM_SUBDIR} /${SwiftCore_ARCH_SUBDIR} "
109
109
"$ENV{SDKROOT} /usr/lib/swift" )
110
110
111
- add_library (SwiftCore SHARED IMPORTED GLOBAL )
112
- set_target_properties (SwiftCore PROPERTIES
111
+ add_library (swiftCore SHARED IMPORTED GLOBAL )
112
+ set_target_properties (swiftCore PROPERTIES
113
113
IMPORTED_IMPLIB "${SwiftCore_LIBRARY} "
114
114
INTERFACE_INCLUDE_DIRECTORIES "${SwiftCore_INCLUDE_DIR} " )
115
115
find_package_handle_standard_args (SwiftCore DEFAULT_MSG
0 commit comments