Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Doxygen integration #31

Merged
merged 1 commit into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ jobs:
cmake -Wno-dev -S . -B ./build
-DCMAKE_BUILD_TYPE:STRING=Release
-DBUILD_SHARED_LIBS:BOOL=OFF
-DNOA_DOCS:BOOL=OFF
-DNOA_TESTS:BOOL=ON
-DCMAKE_COMPILE_WARNING_AS_ERROR:BOOL=ON
${{ matrix.platform.options }}
Expand All @@ -107,7 +106,6 @@ jobs:
cmake -Wno-dev -S . -B ./build
-DCMAKE_BUILD_TYPE:STRING=Release
-DBUILD_SHARED_LIBS:BOOL=ON
-DNOA_DOCS:BOOL=OFF
-DNOA_TESTS:BOOL=ON
-DCMAKE_COMPILE_WARNING_AS_ERROR:BOOL=ON
${{ matrix.platform.options }}
Expand Down
24 changes: 0 additions & 24 deletions .github/workflows/website-build.yml

This file was deleted.

43 changes: 0 additions & 43 deletions .github/workflows/website-deploy.yml

This file was deleted.

6 changes: 0 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ option(NOA_FLAT_MAP "Build the Noa Flat Map library" ON)
option(NOA_GOOGLETEST "Build the Google Test library" ON)
option(NOA_GOOGLEBENCHMARK "Build the Google Benchmark library" ON)
option(NOA_TESTS "Build the Noa tests" OFF)
option(NOA_DOCS "Build the Noa docs" OFF)
option(NOA_INSTALL "Install the Noa library" ON)
option(NOA_ADDRESS_SANITIZER "Build Noa with an address sanitizer" OFF)
option(NOA_UNDEFINED_SANITIZER "Build Noa with an undefined behavior sanitizer" OFF)
Expand Down Expand Up @@ -50,11 +49,6 @@ elseif(NOA_UNDEFINED_SANITIZER)
noa_sanitizer(TYPE undefined)
endif()

if(NOA_DOCS)
noa_target_doxygen(CONFIG "${PROJECT_SOURCE_DIR}/doxygen/Doxyfile.in"
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/website")
endif()

if(PROJECT_IS_TOP_LEVEL)
noa_target_clang_format(SOURCES
src/*.h src/*.cc
Expand Down
7 changes: 0 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ configure: .always
$(CMAKE) -Wno-dev -S . -B ./build \
-DCMAKE_BUILD_TYPE:STRING=$(PRESET) \
-DCMAKE_COMPILE_WARNING_AS_ERROR:BOOL=ON \
-DNOA_DOCS:BOOL=ON \
-DNOA_TESTS:BOOL=ON \
-DNOA_BENCHMARK:BOOL=ON \
-DBUILD_SHARED_LIBS:BOOL=$(SHARED)
Expand All @@ -33,12 +32,6 @@ test: .always
$(CTEST) --test-dir ./build --build-config $(PRESET) \
--output-on-failure --progress --parallel

benchmark: .always
$(CMAKE) --build ./build --config $(PRESET) --target benchmark_all

doxygen: .always
$(CMAKE) --build ./build --config $(PRESET) --target doxygen

clean: .always
$(CMAKE) -E rm -R -f build

Expand Down
Loading
Loading