Skip to content

Commit

Permalink
simplify build
Browse files Browse the repository at this point in the history
  • Loading branch information
dbuzinski committed Feb 19, 2024
1 parent 0382106 commit b84054f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ jobs:
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install compiler dependencies
run: |
sudo apt-get update
sudo apt-get install -y gcc-11 gcc-11-base gcc-11-doc g++-11
sudo apt-get install -y libstdc++-11-dev libstdc++-11-doc
- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v2
- name: Run build
Expand Down
2 changes: 1 addition & 1 deletion buildfile.m
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
plan("mex") = MexTask([plan("uWebSockets").Outputs.paths, "mex/internal/*.cpp"], ...
"toolbox/+blink/+internal", ...
Filename="serve", ...
Options=["CXXFLAGS=''$CXXFLAGS -std=c++20''", "-Iinclude/uWebSockets/src", "-Iinclude/uWebSockets/uSockets/src", "-v", "-lz"], ...
Options=["CXXFLAGS=''$CXXFLAGS -std=c++20''", "-Iinclude/uWebSockets/src", "-Iinclude/uWebSockets/uSockets/src", "-lz"], ...
Dependencies="uWebSockets");
plan("test") = TestTask("tests");
plan("test").Dependencies = ["mex" "forge"];
Expand Down

0 comments on commit b84054f

Please sign in to comment.