24 lines
973 B
Diff
24 lines
973 B
Diff
diff -Naur antlr4-4.7.2.orig/runtime/Cpp/runtime/CMakeLists.txt antlr4-4.7.2/runtime/Cpp/runtime/CMakeLists.txt
|
|
--- antlr4-4.7.2.orig/runtime/Cpp/runtime/CMakeLists.txt 2019-03-07 20:40:31.704496400 -0500
|
|
+++ antlr4-4.7.2/runtime/Cpp/runtime/CMakeLists.txt 2019-03-07 20:46:27.828211500 -0500
|
|
@@ -102,11 +102,15 @@
|
|
COMPILE_FLAGS "${disabled_compile_warnings} ${extra_static_compile_flags}")
|
|
|
|
install(TARGETS antlr4_shared
|
|
- DESTINATION lib
|
|
- EXPORT antlr4-targets)
|
|
+ EXPORT antlr4-targets
|
|
+ RUNTIME DESTINATION bin
|
|
+ LIBRARY DESTINATION lib
|
|
+ ARCHIVE DESTINATION lib)
|
|
install(TARGETS antlr4_static
|
|
- DESTINATION lib
|
|
- EXPORT antlr4-targets)
|
|
+ EXPORT antlr4-targets
|
|
+ RUNTIME DESTINATION bin
|
|
+ LIBRARY DESTINATION lib
|
|
+ ARCHIVE DESTINATION lib)
|
|
|
|
install(DIRECTORY "${PROJECT_SOURCE_DIR}/runtime/src/"
|
|
DESTINATION "include/antlr4-runtime"
|