blob: 2d92b7239386a33d0a354722fdbe5bf0accbbfd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
include_directories(
../include
${CMAKE_SOURCE_DIR}/qtools
)
add_executable(doxmlparser_test
main.cpp
)
target_link_libraries(doxmlparser_test
doxmlparser
qtools
${COVERAGE_LINKER_FLAGS}
)
|