X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=Build;h=1a4a262f3a1b6387683a4636af1beb222cae62ee;hp=21937532d56ba66bc07017f09cd9ceea34c2038e;hb=HEAD;hpb=95743b7460a42cb21056a1a2c24897f01487c2b4 diff --git a/Build b/Build index 21937532..c195c2c8 100644 --- a/Build +++ b/Build @@ -1,59 +1,147 @@ package "mspgl" { - version "2.0"; + version "3.0"; description "Lightweight C++/OpenGL graphics engine"; require "mspcore"; require "mspdatafile"; require "mspmath"; require "mspgui"; - require "opengl"; + require "sigc++-2.0"; - library "mspgl" + feature "vulkan" "Use Vulkan instead of OpenGL as backend"; + if_feature "vulkan" { - source "source"; - install true; - install_map + require "vulkan"; + }; + + if_feature "!vulkan" + { + if_arch "android" + { + require "opengles"; + }; + if_arch "!android" + { + require "opengl"; + }; + + generate "GLEX" { - map "source" "include/msp/gl"; + in_suffix ".glext"; + out_suffix ".cpp"; + out_suffix ".h"; + command "scripts/extgen.py"; + if_arch "android" + { + argument "gles2"; + }; }; }; - program "mesh2c" + generate "RES" { - source "tools/mesh2c.cpp"; - use "mspgl"; + in_suffix ".glsl"; + in_suffix ".samp"; + in_suffix ".mesh"; + in_suffix ".png"; + out_suffix ".cpp"; + command "mspdatatool"; + arguments "-i" "-n" "Msp::GL"; + out_argument "-o"; + processing_unit DIRECTORY; }; - program "viewer" + library "mspgl" { - source "tools/viewer.cpp"; - require "sigc++-2.0"; - use "mspgl"; + source "source/core"; + source "source/materials"; + source "source/render"; + source "source/effects"; + source "source/animation"; + source "source/resources"; + source "source/glsl"; + source "source/builders"; + if_feature "vulkan" + { + source "source/backends/vulkan"; + build_info + { + incpath "source/backends/vulkan"; + }; + }; + if_feature "!vulkan" + { + source "source/backends/opengl"; + build_info + { + incpath "source/backends/opengl"; + }; + }; + source "extensions"; + source "builtin_data"; + source "shaderlib"; + build_info + { + incpath "source"; + incpath "source/core"; + incpath "source/materials"; + incpath "source/render"; + incpath "source/effects"; + incpath "source/animation"; + incpath "source/resources"; + incpath "source/builders"; + standard CXX "c++11"; + }; + install true; + install_map + { + map "source/core" "include/msp/gl"; + map "source/materials" "include/msp/gl"; + map "source/render" "include/msp/gl"; + map "source/effects" "include/msp/gl"; + map "source/animation" "include/msp/gl"; + map "source/resources" "include/msp/gl"; + map "source/glsl" "include/msp/gl/glsl"; + map "source/builders" "include/msp/gl"; + map "source/backends/opengl" "include/msp/gl"; + map "source/backends/vulkan" "include/msp/gl"; + map "extensions" "include/msp/gl/extensions"; + }; }; - program "shaders" + program "viewer" { - source "demos/shaders.cpp"; + source "tools/viewer.cpp"; + require "sigc++-2.0"; use "mspgl"; }; - program "texturing" + program "desertpillars" { - source "demos/texturing.cpp"; + source "demos/desertpillars/source"; + require "sigc++-2.0"; use "mspgl"; + build_info + { + standard CXX "c++14"; + }; }; - program "cubemap" + program "forestpond" { - source "demos/cubemap.cpp"; + source "demos/forestpond/source"; + require "sigc++-2.0"; use "mspgl"; + build_info + { + standard CXX "c++14"; + }; }; - program "desertpillars" + program "glslcompiler" { - source "demos/desertpillars.cpp"; - require "sigc++-2.0"; + source "tools/glslcompiler.cpp"; use "mspgl"; };