Skip to content

Commit 49d6c33

Browse files
committed
force* release build type
1 parent ae5307b commit 49d6c33

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
vcpkg-${{ runner.os }}-
3333
3434
- name: Configure CMake
35-
run: "cmake -B build -DCMAKE_TOOLCHAIN_FILE=${{ github.workspace }}/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_BUILD_TYPE=Release -DVCPKG_TARGET_TRIPLET=x64-linux -DBUILD_SHARED_LIBS=OFF"
35+
run: "cmake -B build -DCMAKE_TOOLCHAIN_FILE=${{ github.workspace }}/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_BUILD_TYPE=Release -DVCPKG_BUILD_TYPE=release -DVCPKG_TARGET_TRIPLET=x64-linux -DBUILD_SHARED_LIBS=OFF"
3636
env:
3737
CC: clang
3838
CXX: clang++

CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
cmake_minimum_required(VERSION 3.22)
22
project(CubicDiscord VERSION 1.0.0 LANGUAGES CXX)
33

4-
set(VCPKG_BUILD_TYPE release)
5-
64
file(GLOB_RECURSE SOURCES CONFIGURE_DEPENDS src/*.cpp)
75
add_executable(${PROJECT_NAME} ${SOURCES})
86

0 commit comments

Comments
 (0)