diff options
author | albert-github <albert.tests@gmail.com> | 2019-04-27 17:36:37 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2019-04-27 17:36:37 (GMT) |
commit | ffcae8fe6e9b68add6b8d9b68b873bc4310743a2 (patch) | |
tree | 5f7ca594b2df14bbc0db6daca022465503dc5018 /addon | |
parent | 97eac792a1b291c39abc65a6615dd96e6caaff53 (diff) | |
download | Doxygen-ffcae8fe6e9b68add6b8d9b68b873bc4310743a2.zip Doxygen-ffcae8fe6e9b68add6b8d9b68b873bc4310743a2.tar.gz Doxygen-ffcae8fe6e9b68add6b8d9b68b873bc4310743a2.tar.bz2 |
issue #6946 Compilation error (clangparser.cpp)
corrected clangparser conform other source code in respect to casting.
Corrected doxyapp and doxyparse make scripts for usage with clang parser.
Diffstat (limited to 'addon')
-rw-r--r-- | addon/doxyapp/CMakeLists.txt | 5 | ||||
-rw-r--r-- | addon/doxyparse/CMakeLists.txt | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/addon/doxyapp/CMakeLists.txt b/addon/doxyapp/CMakeLists.txt index 4fd1816..a737711 100644 --- a/addon/doxyapp/CMakeLists.txt +++ b/addon/doxyapp/CMakeLists.txt @@ -19,6 +19,11 @@ include_directories( add_executable(doxyapp doxyapp.cpp ) + +if (use_libclang) + set(CLANG_LIBS libclang clangTooling ${llvm_libs}) +endif() + target_link_libraries(doxyapp _doxygen qtools diff --git a/addon/doxyparse/CMakeLists.txt b/addon/doxyparse/CMakeLists.txt index 8e7536f..ff198fb 100644 --- a/addon/doxyparse/CMakeLists.txt +++ b/addon/doxyparse/CMakeLists.txt @@ -19,6 +19,11 @@ include_directories( add_executable(doxyparse doxyparse.cpp ) + +if (use_libclang) + set(CLANG_LIBS libclang clangTooling ${llvm_libs}) +endif() + target_link_libraries(doxyparse _doxygen qtools |