package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.8 KiB
42 lines
1.8 KiB
package("shaderwriter") |
|
|
|
set_homepage("https://github.com/DragonJoker/ShaderWriter") |
|
set_description("Library used to write shaders from C++, and export them in either GLSL, HLSL or SPIR-V.") |
|
|
|
set_urls("https://github.com/DragonJoker/ShaderWriter.git") |
|
add_versions("0.1", "a5ef99ff141693ef28cee0e464500888cabc65ad") |
|
add_versions("1.0", "7d506b6864edb5f357ed8993512f5a3618a4ddc1") |
|
|
|
add_deps("cmake") |
|
|
|
add_links("sdwShaderWriter", "sdwCompilerHlsl", "sdwCompilerGlsl", "sdwCompilerSpirV", "sdwShaderAST") |
|
|
|
on_install("windows", "macosx", "linux", function (package) |
|
local configs = |
|
{ |
|
"-DSDW_BUILD_TESTS=OFF", |
|
"-DSDW_BUILD_EXPORTERS=ON", |
|
"-DSDW_BUILD_STATIC_SDW=".. (package:config("shared") and "OFF" or "ON"), |
|
"-DSDW_BUILD_EXPORTER_GLSL_STATIC=".. (package:config("shared") and "OFF" or "ON"), |
|
"-DSDW_BUILD_EXPORTER_HLSL_STATIC=".. (package:config("shared") and "OFF" or "ON"), |
|
"-DSDW_BUILD_EXPORTER_SPIRV_STATIC=".. (package:config("shared") and "OFF" or "ON"), |
|
"-DSDW_GENERATE_SOURCE=OFF", |
|
"-DSDW_BUILD_VULKAN_LAYER=OFF", |
|
"-DPROJECTS_USE_PRECOMPILED_HEADERS=OFF", |
|
"-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release") |
|
} |
|
import("package.tools.cmake").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
#include <CompilerGlsl/compileGlsl.hpp> |
|
#include <CompilerSpirV/compileSpirV.hpp> |
|
#include <ShaderWriter/Intrinsics/Intrinsics.hpp> |
|
#include <ShaderWriter/Source.hpp> |
|
static void test() |
|
{ |
|
sdw::ComputeWriter writer; |
|
} |
|
]]}, {configs = {languages = "c++17"}})) |
|
end)
|
|
|