Skip to content
Snippets Groups Projects
Select Git revision
  • zig
  • master
  • zig-threaded
  • openat
  • chdir
  • clear
  • compll
  • v1.18.1
  • v2.2.2
  • v1.18
  • v2.2.1
  • v2.2
  • v1.17
  • v2.1.2
  • v2.1.1
  • v2.1
  • v2.0.1
  • v2.0
  • v2.0-beta3
  • v2.0-beta2
  • v2.0-beta1
  • v1.16
  • v1.15.1
  • v1.15
  • v1.14.2
  • v1.14.1
  • v1.14
27 results

Makefile

Blame
    • Florian Schmaus's avatar
      74be2772
      Makefile: Add ZIG variable and build target · 74be2772
      Florian Schmaus authored
      The ZIG variable helps to test ncdu with different zig installations,
      and it allows Gentoo to inject the zig version that should be used to
      build zig into the Makefile.
      
      Also add a phony 'build' target as first target to the Makefile so
      that it becomes the default target. This allows the Gentoo package to
      use the default src_compile() function.
      
      See also https://bugs.gentoo.org/900547
      74be2772
      History
      Makefile: Add ZIG variable and build target
      Florian Schmaus authored
      The ZIG variable helps to test ncdu with different zig installations,
      and it allows Gentoo to inject the zig version that should be used to
      build zig into the Makefile.
      
      Also add a phony 'build' target as first target to the Makefile so
      that it becomes the default target. This allows the Gentoo package to
      use the default src_compile() function.
      
      See also https://bugs.gentoo.org/900547
    webpack.config.js 538 B
    const { createApp, createExample, createBrowserTest } = require('./webpack.config.common.js');
    
    const examples = ['proteopedia-wrapper', 'basic-wrapper', 'lighting', 'alpha-orbitals'];
    const tests = [
        'font-atlas',
        'marching-cubes',
        'render-lines', 'render-mesh', 'render-shape', 'render-spheres', 'render-structure', 'render-text',
        'parse-xtc'
    ];
    
    module.exports = [
        createApp('viewer', 'molstar'),
        createApp('docking-viewer', 'molstar'),
        ...examples.map(createExample),
        ...tests.map(createBrowserTest)
    ];