mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-22 11:37:50 +08:00
19 lines
545 B
Diff
19 lines
545 B
Diff
diff --git a/F2CLIBS/libf2c/CMakeLists.txt b/F2CLIBS/libf2c/CMakeLists.txt
|
|
index ca1473f..fa54e94 100644
|
|
--- a/F2CLIBS/libf2c/CMakeLists.txt
|
|
+++ b/F2CLIBS/libf2c/CMakeLists.txt
|
|
@@ -63,3 +63,13 @@ if(UNIX)
|
|
target_link_libraries(f2c m)
|
|
endif()
|
|
set_property(TARGET f2c PROPERTY PREFIX lib)
|
|
+install(TARGETS f2c
|
|
+ RUNTIME DESTINATION bin
|
|
+ LIBRARY DESTINATION lib
|
|
+ ARCHIVE DESTINATION lib)
|
|
+
|
|
+install(TARGETS arithchk
|
|
+ RUNTIME DESTINATION tools
|
|
+ LIBRARY DESTINATION lib
|
|
+ ARCHIVE DESTINATION lib)
|
|
+
|