Try add static libs

This commit is contained in:
Stepanov Igor 2024-12-24 23:06:59 +03:00
parent f73bc1b06b
commit 5dbfd5ba10
2 changed files with 3 additions and 0 deletions

View File

@ -30,6 +30,7 @@ jobs:
run: | run: |
git clone https://github.com/microsoft/vcpkg.git git clone https://github.com/microsoft/vcpkg.git
${{ github.workspace }}/vcpkg/bootstrap-vcpkg.bat ${{ github.workspace }}/vcpkg/bootstrap-vcpkg.bat
${{ github.workspace }}/vcpkg integrate install
- name: Configure and build project with CMake and vcpkg - name: Configure and build project with CMake and vcpkg
env: env:

View File

@ -1,6 +1,8 @@
#include "engine.hpp" #include "engine.hpp"
#ifndef GLEW_STATIC
#define GLEW_STATIC #define GLEW_STATIC
#endif
#include "debug/Logger.hpp" #include "debug/Logger.hpp"
#include "assets/AssetsLoader.hpp" #include "assets/AssetsLoader.hpp"