[nostalgia/core] Get building with GLFW (it has a better Conan package than SDL)

This commit is contained in:
2021-04-28 22:27:33 -05:00
parent a17bc04ee7
commit 307684348e
10 changed files with 220 additions and 13 deletions

View File

@@ -1,9 +1,8 @@
from conans import ConanFile, CMake
class NostalgiaConan(ConanFile):
settings = "os", "compiler", "build_type", "arch"
requires = "jsoncpp/1.9.4", "sdl2/2.0.14@bincrafters/stable"
generators = "cmake", "cmake_find_package", "cmake_paths"
#default_options = {
# "sdl2:nas": False
#}
settings = 'os', 'compiler', 'build_type', 'arch'
requires = 'jsoncpp/1.9.4', 'glfw/3.3.4'
generators = 'cmake', 'cmake_find_package', 'cmake_paths'
default_options = {
}