diff options
author | albert-github <albert.tests@gmail.com> | 2015-12-12 10:42:14 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2015-12-12 10:42:14 (GMT) |
commit | a58a2cafbc136f7821b9313bd6c1413eaab3e868 (patch) | |
tree | 6056843a2b81b1081beccb3150b8596f8ebf32af | |
parent | b103d9056cf20cf856ed5ca114950dab642b3f6f (diff) | |
download | Doxygen-a58a2cafbc136f7821b9313bd6c1413eaab3e868.zip Doxygen-a58a2cafbc136f7821b9313bd6c1413eaab3e868.tar.gz Doxygen-a58a2cafbc136f7821b9313bd6c1413eaab3e868.tar.bz2 |
doxyapp and CLANG linking
In case CLANG is enabled for doxygen this library is also used for doxyapp, but the clang libraries were not included in the doxyapp CMake project.
-rw-r--r-- | addon/doxyapp/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/addon/doxyapp/CMakeLists.txt b/addon/doxyapp/CMakeLists.txt index a039762..99a6fd4 100644 --- a/addon/doxyapp/CMakeLists.txt +++ b/addon/doxyapp/CMakeLists.txt @@ -6,6 +6,7 @@ include_directories( ${CMAKE_SOURCE_DIR}/src ${CMAKE_SOURCE_DIR}/qtools ${ICONV_INCLUDE_DIR} + ${CLANG_INCLUDEDIR} ) add_executable(doxyapp @@ -21,6 +22,7 @@ ${ICONV_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${SQLITE3_LIBRARIES} ${EXTRA_LIBS} +${CLANG_LIBS} ) install(TARGETS doxyapp DESTINATION bin) |