Kaydet (Commit) 9f44fe19 authored tarafından Lubos Lunak's avatar Lubos Lunak

INCLUDE_STL does not exist

üst beec3537
......@@ -112,7 +112,6 @@ namespace gb
List<Library> LINKED_LIBS;
List<Path> AUXTARGETS;
List<Path> INCLUDE;
List<Path> INCLUDE_STL;
List<StaticLibrary> LINKED_STATIC_LIBS;
List<String> CFLAGS;
List<String> CXXFLAGS;
......@@ -140,7 +139,6 @@ namespace gb
static const List<String> CXXFLAGS;
static const List<String> LDFLAGS;
static const List<Path> INCLUDE;
static const List<Path> INCLUDE_STL;
};
}
/* vim: set filetype=cpp : */
......@@ -160,10 +160,6 @@ namespace gb { namespace types
/// \$\$(INCLUDE) contains the current paths and can be used if
/// just a few need to be modified.
void set_include(List<Path> include);
/// Sets the stl include paths for C++ compilation.
/// \$\$(INCLUDE_STL) contains the current paths and can be used if
/// just a few need to be modified.
void set_include_stl(List<Path> include_stl);
};
/// A target using the resource compiler
class UsesRsc
......
......@@ -51,10 +51,10 @@ $(call gb_NoexPrecompiledHeader_get_dep_target,%) :
echo '$(call gb_NoexPrecompiledHeader_get_target,$*) : $$(gb_Helper_PHONY)' > $@)
$(call gb_PrecompiledHeader_get_target,%) :
$(call gb_PrecompiledHeader__command,$@,$*,$<,$(PCH_DEFS),$(PCH_CXXFLAGS) $(gb_PrecompiledHeader_EXCEPTIONFLAGS),$(INCLUDE_STL) $(INCLUDE))
$(call gb_PrecompiledHeader__command,$@,$*,$<,$(PCH_DEFS),$(PCH_CXXFLAGS) $(gb_PrecompiledHeader_EXCEPTIONFLAGS),$(INCLUDE))
$(call gb_NoexPrecompiledHeader_get_target,%) :
$(call gb_NoexPrecompiledHeader__command,$@,$*,$<,$(PCH_DEFS),$(PCH_CXXFLAGS) $(gb_NoexPrecompiledHeader_NOEXCEPTIONFLAGS),$(INCLUDE_STL) $(INCLUDE))
$(call gb_NoexPrecompiledHeader__command,$@,$*,$<,$(PCH_DEFS),$(PCH_CXXFLAGS) $(gb_NoexPrecompiledHeader_NOEXCEPTIONFLAGS),$(INCLUDE))
.PHONY : $(call gb_PrecompiledHeader_get_clean_target,%) $(call gb_NoExPrecompiledHeader_get_clean_target,%)
$(call gb_PrecompiledHeader_get_clean_target,%) :
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment