From 3dc24abdb3dfb2728d00e1194735853e12d9e80d Mon Sep 17 00:00:00 2001 From: Josiah VanderZee Date: Sun, 13 Nov 2022 07:21:27 -0600 Subject: [PATCH] Remove DESCRIPTION from tinygltf project --- .github/workflows/build.yml | 7 +++++-- source/lib/tinygltf/CMakeLists.txt | 1 - 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c2e7291d..beeb4f46 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -151,12 +151,15 @@ jobs: - name: Build run: | - cmake -G Ninja -DCMAKE_CXX_COMPILER=/usr/bin/g++-5 -DCMAKE_BUILD_TYPE=Release . + mkdir build + cd build + cmake -G Ninja -DCMAKE_CXX_COMPILER=/usr/bin/g++-5 -DCMAKE_BUILD_TYPE=Release .. cmake --build . + cd .. - name: Test run: | - ./bin/Linux/tests + ./build/bin/Linux/tests mingw: name: "MinGW ${{matrix.config.variant}}${{matrix.config.extras}}" diff --git a/source/lib/tinygltf/CMakeLists.txt b/source/lib/tinygltf/CMakeLists.txt index 782edd05..4647ecbc 100644 --- a/source/lib/tinygltf/CMakeLists.txt +++ b/source/lib/tinygltf/CMakeLists.txt @@ -2,7 +2,6 @@ cmake_minimum_required(VERSION 3.5) project(tinygltf VERSION 2.6.3 - DESCRIPTION "Header only C++11 tiny glTF 2.0 library" LANGUAGES CXX )