We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59706f4 commit a89cc00Copy full SHA for a89cc00
.gitignore
@@ -4,3 +4,4 @@
4
!.git*
5
6
build
7
+install
CMakeLists.txt
@@ -71,3 +71,18 @@ if(BUILD_TESTING)
71
72
catch_discover_tests(my_fibonacci_test)
73
endif()
74
+
75
+install(
76
+ TARGETS my_fibonacci my_fibonacci_main
77
+ EXPORT my_fibonacci_targets
78
+ LIBRARY DESTINATION lib
79
+ RUNTIME DESTINATION bin
80
+ FILE_SET HEADERS
81
+)
82
83
84
85
+ FILE MyFibonacciTargets.cmake
86
+ NAMESPACE my_fibonacci::
87
+ DESTINATION lib/cmake/MyFibonacci
88
0 commit comments