-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathvcpkg_usage.txt
More file actions
106 lines (70 loc) · 3.59 KB
/
Copy pathvcpkg_usage.txt
File metadata and controls
106 lines (70 loc) · 3.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
boost-date-time provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(boost_date_time CONFIG REQUIRED)
target_link_libraries(main PRIVATE Boost::date_time)
boost-asio provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(boost_asio CONFIG REQUIRED)
target_link_libraries(main PRIVATE Boost::asio)
boost-crc provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(boost_crc CONFIG REQUIRED)
target_link_libraries(main PRIVATE Boost::crc)
boost-filesystem provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(boost_filesystem CONFIG REQUIRED)
target_link_libraries(main PRIVATE Boost::filesystem)
boost-format provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(boost_format CONFIG REQUIRED)
target_link_libraries(main PRIVATE Boost::format)
boost-multi-index provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(boost_multi_index CONFIG REQUIRED)
target_link_libraries(main PRIVATE Boost::multi_index)
boost-program-options provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(boost_program_options CONFIG REQUIRED)
target_link_libraries(main PRIVATE Boost::program_options)
boost-ptr-container provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(boost_ptr_container CONFIG REQUIRED)
target_link_libraries(main PRIVATE Boost::ptr_container)
boost-random provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(boost_random CONFIG REQUIRED)
target_link_libraries(main PRIVATE Boost::random)
boost-thread provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(boost_thread CONFIG REQUIRED)
target_link_libraries(main PRIVATE Boost::thread)
boost-spirit provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(boost_spirit CONFIG REQUIRED)
target_link_libraries(main PRIVATE Boost::spirit)
boost-serialization provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(boost_serialization CONFIG REQUIRED)
target_link_libraries(main PRIVATE Boost::serialization)
find_package(boost_wserialization CONFIG REQUIRED)
target_link_libraries(main PRIVATE Boost::wserialization)
boost-signals2 provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(boost_signals2 CONFIG REQUIRED)
target_link_libraries(main PRIVATE Boost::signals2)
bugtrap is header-only and can be used from CMake via:
find_path(BUGTRAP_INCLUDE_DIRS "bugtrap/BugTrap.h")
target_include_directories(main PRIVATE ${BUGTRAP_INCLUDE_DIRS})
gsoap is header-only and can be used from CMake via:
find_path(GSOAP_INCLUDE_DIRS "gsoap/stdsoap2.h")
target_include_directories(main PRIVATE ${GSOAP_INCLUDE_DIRS})
scintilla is header-only and can be used from CMake via:
find_path(SCINTILLA_INCLUDE_DIRS "scintilla/include/ILexer.h")
target_include_directories(main PRIVATE ${SCINTILLA_INCLUDE_DIRS})
webview2 provides CMake targets:
# this is heuristically generated, and may not be correct
find_package(unofficial-webview2 CONFIG REQUIRED)
target_link_libraries(main PRIVATE unofficial::webview2::webview2)
wtl is header-only and can be used from CMake via:
find_path(WTL_INCLUDE_DIRS "atlapp.h")
target_include_directories(main PRIVATE ${WTL_INCLUDE_DIRS})