🐛 Fixed cmake project name

This commit is contained in:
Edgar 2022-07-14 14:16:04 +02:00
parent 1a1582f773
commit 04b4ff10f7
No known key found for this signature in database
GPG Key ID: 17D930BB616061A5

View File

@ -1,5 +1,10 @@
cmake_minimum_required(VERSION 3.1.2)
project(discord_game_sdk_core)
if (WIN32)
project(discord_game_sdk_core)
else()
project(discord_game_sdk)
endif()
include(conanbuildinfo.cmake)
conan_basic_setup()