Skip to content

Commit

Permalink
Merge pull request #23 from Sigmanificient/laplace/9-create-a-complet…
Browse files Browse the repository at this point in the history
…e-new-architecture

fix(libs): fix build error
  • Loading branch information
MasterLaplace authored Oct 22, 2023
2 parents f65d500 + e3cf589 commit d65c869
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/doxygen-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Doxygen GitHub Pages Deploy Action

on:
push:
branches: [ '*' ]

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: DenverCoder1/doxygen-github-pages-action@v1.3.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
config_file: Doxyfile.cfg
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule ".github/doxygen-awesome-css"]
path = .github/doxygen-awesome-css
url = https://github.com/jothepro/doxygen-awesome-css.git
3 changes: 2 additions & 1 deletion Doxyfile.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -1404,7 +1404,8 @@ HTML_EXTRA_STYLESHEET =
# files will be copied as-is; there are no commands or markers available.
# This tag requires that the tag GENERATE_HTML is set to YES.

HTML_EXTRA_FILES =
HTML_EXTRA_FILES = doxygen-awesome-css/doxygen-awesome.css \
doxygen-awesome-css/doxygen-awesome-sidebar-only.css

# The HTML_COLORSTYLE tag can be used to specify if the generated HTML output
# should be rendered with a dark or light theme.
Expand Down
2 changes: 1 addition & 1 deletion Libs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ NAME_LLIB = libLaplaceLib.dylib
NAME_TEST = unit_tests.out
endif

CFLAGS = -Wall -Werror -Wpedantic $(INCLUDE_LLIB) $(INCLUDE_LLINK) $(INCLUDE_LMAP) $(INCLUDE_LERROR)
CFLAGS = -Wall -Wpedantic $(INCLUDE_LLIB) $(INCLUDE_LLINK) $(INCLUDE_LMAP) $(INCLUDE_LERROR)
LDFLAGS = -L. -lLaplaceLib -lLaplaceLink -lLaplaceMap -lLaplaceError
FASTFLAGS = -Ofast -march=native -mtune=native -fomit-frame-pointer \
-fopenmp -fprefetch-loop-arrays -pipe
Expand Down

0 comments on commit d65c869

Please sign in to comment.