Skip to content

Commit

Permalink
HELLOIMGUI_BUILD_DOCS: inactive under windows
Browse files Browse the repository at this point in the history
  • Loading branch information
pthom committed Jul 5, 2024
1 parent 96d4544 commit 876875c
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -346,10 +346,14 @@ endif()
add_subdirectory(src)

if (HELLOIMGUI_BUILD_DOCS)
add_custom_target(hello_imgui_build_doc ALL
${PROJECT_SOURCE_DIR}/tools/doc/process_md_docs.py
COMMENT "Generating doc"
)
if (NOT WIN32)
add_custom_target(hello_imgui_build_doc ALL
${PROJECT_SOURCE_DIR}/tools/doc/process_md_docs.py
COMMENT "Generating doc"
)
else()
message(WARNING "HELLOIMGUI_BUILD_DOCS is not supported on Windows")
endif()
endif()


Expand Down

0 comments on commit 876875c

Please sign in to comment.