mirror of
https://github.com/danule222/xrbDS.git
synced 2025-06-18 06:15:31 -04:00
9 lines
224 B
Python
9 lines
224 B
Python
from conan import ConanFile
|
|
|
|
class XrbdsRecipe(ConanFile):
|
|
settings = "os", "arch", "compiler", "build_type"
|
|
generators = "CMakeToolchain", "CMakeDeps"
|
|
|
|
def requirements(self):
|
|
self.requires("glm/1.0.1")
|