Fixing Linux build

This commit is contained in:
wheremyfoodat 2023-03-15 02:55:04 +02:00
parent 9c636e6cfc
commit 22418e9474
2 changed files with 2 additions and 1 deletions

View file

@ -26,7 +26,7 @@ jobs:
- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++
- name: Build
# Build your program with the given configuration

View file

@ -1,6 +1,7 @@
#pragma once
#include <cassert>
#include <cstdio>
#include <cstring>
#include <optional>
#include <string>
#include <type_traits>