Skip to content

Commit a17572a

Browse files
committed
Address feedback
1 parent e7d655d commit a17572a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/native/corehost/apphost/static/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ else()
174174
else()
175175
list(APPEND NATIVE_LIBS
176176
System.Security.Cryptography.Native.Android-Static
177-
System.Security.Cryptography.Native.Android-StaticJNIExport
177+
System.Security.Cryptography.Native.Android.JNIExport-Static
178178
)
179179
endif()
180180

src/native/libs/System.Security.Cryptography.Native.Android/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ add_library(System.Security.Cryptography.Native.Android-Static
5656
# necessary to put this symbol in a separate .a archive so that we can exclude it
5757
# from hiding described above.
5858
#
59-
add_library(System.Security.Cryptography.Native.Android-StaticJNIExport
59+
add_library(System.Security.Cryptography.Native.Android.JNIExport-Static
6060
STATIC
6161
pal_trust_manager_jni_export.c
6262
)
@@ -68,16 +68,16 @@ target_link_libraries(System.Security.Cryptography.Native.Android
6868

6969
set_target_properties(System.Security.Cryptography.Native.Android PROPERTIES OUTPUT_NAME "System.Security.Cryptography.Native.Android")
7070
set_target_properties(System.Security.Cryptography.Native.Android-Static PROPERTIES OUTPUT_NAME "System.Security.Cryptography.Native.Android" CLEAN_DIRECT_OUTPUT 1)
71-
set_target_properties(System.Security.Cryptography.Native.Android-StaticJNIExport PROPERTIES OUTPUT_NAME "System.Security.Cryptography.Native.Android.JNIExport" CLEAN_DIRECT_OUTPUT 1)
71+
set_target_properties(System.Security.Cryptography.Native.Android.JNIExport-Static PROPERTIES OUTPUT_NAME "System.Security.Cryptography.Native.Android.JNIExport" CLEAN_DIRECT_OUTPUT 1)
7272

7373
if (GEN_SHARED_LIB)
7474
install_with_stripped_symbols (System.Security.Cryptography.Native.Android PROGRAMS .)
7575
endif()
7676

7777
install (TARGETS System.Security.Cryptography.Native.Android-Static DESTINATION ${STATIC_LIB_DESTINATION} COMPONENT libs)
78-
install (TARGETS System.Security.Cryptography.Native.Android-StaticJNIExport DESTINATION ${STATIC_LIB_DESTINATION} COMPONENT libs)
78+
install (TARGETS System.Security.Cryptography.Native.Android.JNIExport-Static DESTINATION ${STATIC_LIB_DESTINATION} COMPONENT libs)
7979

8080
if(CLR_CMAKE_HOST_ANDROID)
8181
install (TARGETS System.Security.Cryptography.Native.Android-Static DESTINATION sharedFramework COMPONENT runtime)
82-
install (TARGETS System.Security.Cryptography.Native.Android-StaticJNIExport DESTINATION sharedFramework COMPONENT runtime)
82+
install (TARGETS System.Security.Cryptography.Native.Android.JNIExport-Static DESTINATION sharedFramework COMPONENT runtime)
8383
endif()

0 commit comments

Comments
 (0)