summaryrefslogtreecommitdiffstats
path: root/Tests/FindDoxygen/SimpleTest/CMakeLists.txt
blob: deec4fd89872b796ef17fcff688783ce814c5204 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
cmake_minimum_required(VERSION 3.8)
project(TestFindDoxygen VERSION 1.0 LANGUAGES NONE)

# Testing backward compatible signature
find_package(Doxygen REQUIRED)

if(TARGET Doxygen::doxygen)
    # Check backward compatibility
    if(NOT DOXYGEN_EXECUTABLE)
        message(FATAL_ERROR "Backward compatibility broken: DOXYGEN_EXECUTABLE not set")
    endif()
    if(NOT DOXYGEN)
        message(FATAL_ERROR "Backward compatibility broken: DOXYGEN not set")
    endif()
    # Check presence of expected generated files
    foreach(file CMakeDoxyfile.in CMakeDoxygenDefaults.cmake)
        if(NOT EXISTS "${PROJECT_BINARY_DIR}/${file}")
            message(FATAL_ERROR "Missing generated file: ${file}")
        endif()
    endforeach()
else()
    message(FATAL_ERROR "Import target Doxygen::doxygen not defined")
endif()

set(DOXYGEN_OUTPUT_DIRECTORY noArgs)
doxygen_add_docs(docsNoArgs)
if(NOT EXISTS "${PROJECT_BINARY_DIR}/Doxyfile.docsNoArgs")
    message(FATAL_ERROR "Missing generated file: Doxyfile.docsNoArgs")
endif()
if(NOT TARGET docsNoArgs)
    message(FATAL_ERROR "Target docsNoArgs not created")
endif()

set(DOXYGEN_OUTPUT_DIRECTORY withArgs)
configure_file(spaces_in_name.cpp.in "spaces in name.cpp" COPYONLY)
doxygen_add_docs(docsWithArgs
    "${CMAKE_CURRENT_BINARY_DIR}/spaces in name.cpp"
    main.cpp
)
if(NOT EXISTS "${PROJECT_BINARY_DIR}/Doxyfile.docsWithArgs")
    message(FATAL_ERROR "Missing generated file: Doxyfile.docsWithArgs")
endif()
if(NOT TARGET docsWithArgs)
    message(FATAL_ERROR "Target docsWithArgs not created")
endif()
# Note that CMake inserts at least one entry into SOURCES when a COMMAND or
# DEPENDS option is given to add_custom_target(), so rather than looking for an
# exact match, we only verify that the files we expect to be there are present
get_target_property(srcList docsWithArgs SOURCES)
set(expectedList
    "${CMAKE_CURRENT_BINARY_DIR}/spaces in name.cpp"
    "${CMAKE_CURRENT_SOURCE_DIR}/main.cpp"
)
foreach(f IN LISTS expectedList)
    if(NOT f IN_LIST srcList)
        message(FATAL_ERROR "SOURCES missing file: ${f}")
    endif()
endforeach()

add_custom_target(allDocTargets)
add_dependencies(allDocTargets docsNoArgs docsWithArgs)