aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-12-13 21:36:45 +0800
committercrupest <crupest@outlook.com>2021-12-13 21:36:45 +0800
commit13f76127fe0e3371b8748ceb38485b6237f69aeb (patch)
tree2861214abbb1768058cbd86b2e047aec6e3a24fc
parent7c7d8f88c7cd6fccf3d8df0cfd6ae29fe28f3f71 (diff)
downloadcru-13f76127fe0e3371b8748ceb38485b6237f69aeb.tar.gz
cru-13f76127fe0e3371b8748ceb38485b6237f69aeb.tar.bz2
cru-13f76127fe0e3371b8748ceb38485b6237f69aeb.zip
...
-rw-r--r--.github/workflows/macos-ci.yml2
-rw-r--r--demos/CMakeLists.txt1
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/macos-ci.yml b/.github/workflows/macos-ci.yml
index 0c795fa3..f46cd156 100644
--- a/.github/workflows/macos-ci.yml
+++ b/.github/workflows/macos-ci.yml
@@ -34,7 +34,7 @@ jobs:
- name: Build
run: |
cmake -DCMAKE_BUILD_TYPE:STRING=Debug -DCMAKE_C_COMPILER:FILEPATH=/usr/bin/clang -DCMAKE_CXX_COMPILER:FILEPATH=/usr/bin/clang++ -H. -B./build -G Ninja
- cmake --build /Users/crupest/codes/cru/build --config Debug --target all
+ cmake --build ./build --config Debug --target all
- name: Test
working-directory: build
diff --git a/demos/CMakeLists.txt b/demos/CMakeLists.txt
index 3dd54bc6..3afb5f91 100644
--- a/demos/CMakeLists.txt
+++ b/demos/CMakeLists.txt
@@ -16,6 +16,7 @@ elseif(UNIX)
add_subdirectory(xcb)
endif()
+# My computer graphics practice source codes. Needs `dlib` as dependency.
if (CRU_BUILD_GRAPHICS_EXPERIMENTS)
add_subdirectory(graphics_experiments)
endif()