Modifications suggested by conan team.

This commit is contained in:
dimitri
2017-07-24 07:17:37 +02:00
parent 37857b02fe
commit bb63aa9e9b
4 changed files with 15 additions and 8 deletions

View File

@@ -1,12 +1,8 @@
from conans import ConanFile, CMake
import os
channel = os.getenv("CONAN_CHANNEL", "testing")
username = os.getenv("CONAN_USERNAME", "g-truc")
class TestGlm(ConanFile):
settings = "os", "compiler", "build_type", "arch"
requires = "glm/master@%s/%s" % (username, channel)
generators = "cmake"
def build(self):