We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58ee93f commit cc332ccCopy full SHA for cc332cc
src/CMakeLists.txt
@@ -93,7 +93,11 @@ if(BUILD_SHARED_LIBS)
93
set_target_properties(rime PROPERTIES INSTALL_NAME_DIR "@rpath")
94
endif()
95
install(TARGETS rime DESTINATION ${CMAKE_INSTALL_FULL_LIBDIR})
96
-
+ if(MSVC)
97
+ install(FILES $<TARGET_PDB_FILE:rime>
98
+ DESTINATION ${CMAKE_INSTALL_FULL_LIBDIR}
99
+ OPTIONAL)
100
+ endif()
101
if(BUILD_SEPARATE_LIBS)
102
add_library(rime-dict ${rime_dict_module_src})
103
target_link_libraries(rime-dict
0 commit comments