File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: clang++
22on :
33 push :
44 branches :
5- - ' * '
5+ - " * "
66 paths :
77 - .github/workflows/clang.yaml
88 - include/**
@@ -19,10 +19,10 @@ jobs:
1919
2020 - name : Prepare
2121 env :
22- CC : clang-17
22+ CC : clang-17
2323 CXX : clang++-17
2424 run : |
25- cmake -B build -DCMAKE_CXX_COMPILER=$CXX -DCMAKE_C_COMPILER=$CC
25+ cmake -B build -DBUILD_TESTS=ON - DCMAKE_CXX_COMPILER=$CXX -DCMAKE_C_COMPILER=$CC
2626 continue-on-error : false
2727
2828 - name : Build test executable
Original file line number Diff line number Diff line change @@ -2,13 +2,12 @@ name: g++
22on :
33 push :
44 branches :
5- - ' * '
5+ - " * "
66 paths :
77 - .github/workflows/gpp.yaml
88 - include/**
99 - tests/**
1010
11-
1211jobs :
1312 build :
1413 name : Build and run tests
@@ -20,10 +19,10 @@ jobs:
2019
2120 - name : Prepare
2221 env :
23- CC : gcc-13
22+ CC : gcc-13
2423 CXX : g++-13
2524 run : |
26- cmake -B build -DCMAKE_CXX_COMPILER=$CXX -DCMAKE_C_COMPILER=$CC
25+ cmake -B build -DBUILD_TESTS=ON - DCMAKE_CXX_COMPILER=$CXX -DCMAKE_C_COMPILER=$CC
2726 continue-on-error : false
2827
2928 - name : Build test executable
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ project(cpp-gl
1414 LANGUAGES CXX
1515)
1616
17- option (BUILD_TESTS "Build project tests" ON )
17+ option (BUILD_TESTS "Build project tests" OFF )
1818
1919# Set the proper cxx standard
2020if (NOT DEFINED CMAKE_CXX_STANDARD )
Original file line number Diff line number Diff line change 1+ // Copyright (c) 2024-2026 Jakub Musiał
2+ // This file is part of the CPP-GL project (https://github.com/SpectraL519/cpp-gl).
3+ // Licensed under the MIT License. See the LICENSE file in the project root for full license information.
4+
5+ namespace hgl {
6+
7+ class hypergraph ;
8+
9+ } // namespace hgl
You can’t perform that action at this time.
0 commit comments