aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/utility-installed.cxx
blob: 8fcb2718e2505359d953b0190f419c0522ed567f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// file      : libbuild2/utility-installed.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

// Bootstrap build is never condidered installed.
//
#ifndef BUILD2_BOOTSTRAP

#include <libbuild2/utility.hxx>

namespace build2
{
  struct build_installed_init
  {
    build_installed_init ()
    {
      build_installed = true;
    }
  };

  static build_installed_init init_;
}

#endif