blob: 2e6ab171a370eec6e663c0e0285a0057b477ab88 (
plain)
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
|
diff --git a/proxygen/httpserver/CMakeLists.txt b/proxygen/httpserver/CMakeLists.txt
index 40046e5..ab53b06 100644
--- a/proxygen/httpserver/CMakeLists.txt
+++ b/proxygen/httpserver/CMakeLists.txt
@@ -45,7 +45,7 @@ target_link_libraries(
install(
TARGETS proxygen_push
EXPORT proxygen-exports
- DESTINATION bin
+ DESTINATION tools
)
add_executable(proxygen_proxy
@@ -66,7 +66,7 @@ target_link_libraries(
install(
TARGETS proxygen_proxy
EXPORT proxygen-exports
- DESTINATION bin
+ DESTINATION tools
)
add_executable(proxygen_static
@@ -87,7 +87,7 @@ target_link_libraries(
install(
TARGETS proxygen_static
EXPORT proxygen-exports
- DESTINATION bin
+ DESTINATION tools
)
add_executable(proxygen_echo
@@ -108,7 +108,7 @@ target_link_libraries(
install(
TARGETS proxygen_echo
EXPORT proxygen-exports
- DESTINATION bin
+ DESTINATION tools
)
if (BUILD_QUIC)
@@ -140,7 +140,7 @@ if (BUILD_QUIC)
install(
TARGETS hq
EXPORT proxygen-exports
- DESTINATION bin
+ DESTINATION tools
)
endif()
|