Skip to content
Snippets Groups Projects
Select Git revision
  • ddd258ca991893e35766507dc3af4c6cf4b4b4a0
  • master default protected
  • feature/refactor
  • 4.24
  • develop
  • Rendering
  • temp-optix-6
7 results

M_HandMat.uasset

Blame
  • conanfile.py 2.53 KiB
    #-------------------------------------------------------------------------------
    # Project Phoenix
    #
    # Copyright (c) 2017 RWTH Aachen University, Germany,
    # Virtual Reality & Immersive Visualisation Group.
    #-------------------------------------------------------------------------------
    #                                  License
    #
    # Licensed under the Apache License, Version 2.0 (the "License");
    # you may not use this file except in compliance with the License.
    # You may obtain a copy of the License at
    #
    #     http://www.apache.org/licenses/LICENSE-2.0
    #
    # Unless required by applicable law or agreed to in writing, software
    # distributed under the License is distributed on an "AS IS" BASIS,
    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    #-------------------------------------------------------------------------------
    
    from conans import ConanFile, CMake
    
    class ProjectPhoenix(ConanFile):
        name = "phx"
        version = "17.09.0"
        license = "Apache License, Version 2.0"
        description = """Project Phoenix"""
        settings = "os", "compiler", "build_type", "arch"
    
        requires = (("assimp/9756b48@RWTH-VR/thirdparty"),
                    ("boost/1.64.0@RWTH-VR/thirdparty"),
                    ("catch/1.9.7@RWTH-VR/thirdparty"),
                    ("cppcheck/1.82@RWTH-VR/thirdparty"),
                    ("cpplint/9883c51@RWTH-VR/thirdparty"),
                    ("freeimage/3.17.0@RWTH-VR/thirdparty"),
                    ("gl/1.0.0@RWTH-VR/thirdparty"),
                    ("glew/2.1.0_1@RWTH-VR/thirdparty"),
                    ("glm/0.9.8@RWTH-VR/thirdparty"),
                    ("SDL2/2.0.5@RWTH-VR/thirdparty"),
                    ("spdlog/0.14.0@RWTH-VR/thirdparty"),
                    ("trompeloeil/v25@RWTH-VR/thirdparty"))
        generators = "cmake"
    
        def configure(self):
           self.options["boost"].header_only = True
           self.options["freeimage"].shared = True
           self.options["glew"].shared = True
           self.options["gl"].shared = True
    
        def imports(self):
           self.copy("*.dll", dst="lib", src="bin")
           self.copy("*.dll", dst="tests/Debug", src="bin")
           self.copy("*.dll", dst="tests/Release", src="bin")
           self.copy("*.dll", dst="demos/viewer/Debug", src="bin")
           self.copy("*.dll", dst="demos/viewer/Release", src="bin")
           self.copy("*.so", dst="lib", src="lib")
           self.copy("*.so*", dst="lib", src="lib")
           self.copy("*.dylib", dst="lib", src="lib")
           self.copy("*.dylib", dst="tests", src="lib")