| 
							- /*
 -   ==============================================================================
 - 
 -    This file is part of the JUCE 6 technical preview.
 -    Copyright (c) 2020 - Raw Material Software Limited
 - 
 -    You may use this code under the terms of the GPL v3
 -    (see www.gnu.org/licenses).
 - 
 -    For this technical preview, this file is not subject to commercial licensing.
 - 
 -    JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
 -    EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
 -    DISCLAIMED.
 - 
 -   ==============================================================================
 - */
 - 
 - /*******************************************************************************
 -  The block below describes the properties of this module, and is read by
 -  the Projucer to automatically generate project code that uses it.
 -  For details about the syntax and how to create or use a module, see the
 -  JUCE Module Format.txt file.
 - 
 - 
 -  BEGIN_JUCE_MODULE_DECLARATION
 - 
 -   ID:                 juce_build_tools
 -   vendor:             juce
 -   version:            6.0.0
 -   name:               JUCE Build Tools
 -   description:        Classes for generating intermediate files for JUCE projects.
 -   website:            http://www.juce.com/juce
 -   license:            GPL/Commercial
 - 
 -   dependencies:       juce_gui_basics
 - 
 -  END_JUCE_MODULE_DECLARATION
 - 
 - *******************************************************************************/
 - 
 - // This module is shared by juceaide and the Projucer, but should not be
 - // considered 'public'. That is, its API, functionality, and contents (and
 - // existence!) may change between releases without warning.
 - 
 - #pragma once
 - #define JUCE_BUILD_TOOLS_H_INCLUDED
 - 
 - #include <juce_gui_basics/juce_gui_basics.h>
 - 
 - #include "utils/juce_ProjectType.h"
 - #include "utils/juce_BuildHelperFunctions.h"
 - #include "utils/juce_BinaryResourceFile.h"
 - #include "utils/juce_RelativePath.h"
 - #include "utils/juce_Icons.h"
 - #include "utils/juce_PlistOptions.h"
 - #include "utils/juce_ResourceFileHelpers.h"
 - #include "utils/juce_ResourceRc.h"
 - #include "utils/juce_VersionNumbers.h"
 - #include "utils/juce_Entitlements.h"
 
 
  |