summaryrefslogtreecommitdiffstats
path: root/addon/doxyparse/CMakeLists.txt
blob: 24f98cbf00654e5b384254b55180ce1c740c7620 (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
if (build_parse)

find_package(Iconv)

include_directories(
	${CMAKE_SOURCE_DIR}/src
	${CMAKE_SOURCE_DIR}/qtools
	${ICONV_INCLUDE_DIR}
)

add_executable(doxyparse
doxyparse.cpp
)
target_link_libraries(doxyparse
_doxygen
qtools
md5
doxycfg
vhdlparser
${ICONV_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
${SQLITE3_LIBRARIES}
${EXTRA_LIBS}
)

install(TARGETS doxyparse DESTINATION bin)

endif()