Remove DESCRIPTION from tinygltf project

This commit is contained in:
Josiah VanderZee 2022-11-13 07:21:27 -06:00 committed by JosiahWI
parent 25507f196c
commit ad9fda174f
No known key found for this signature in database
GPG Key ID: C7BB8573A4ABC4B9
2 changed files with 5 additions and 3 deletions

View File

@ -109,12 +109,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
win32:
runs-on: ubuntu-20.04

View File

@ -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
)