1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00
This commit is contained in:
jules 2007-06-17 11:22:54 +00:00
parent 03d945767d
commit 2b35f56640
4 changed files with 80 additions and 76 deletions

View file

@ -114,6 +114,7 @@
InlineFunctionExpansion="1"
EnableIntrinsicFunctions="true"
FavorSizeOrSpeed="1"
WholeProgramOptimization="true"
PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
StringPooling="true"
RuntimeLibrary="0"
@ -5028,6 +5029,78 @@
RelativePath="..\..\..\src\juce_core\io\network\juce_URL.h"
>
</File>
<Filter
Name="win32_code"
>
<File
RelativePath="..\platform_specific_code\juce_win32_ASIO.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_AudioCDReader.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_DirectSound.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_DynamicLibraryLoader.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_DynamicLibraryLoader.h"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_FileChooser.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_Files.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_Fonts.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_Messaging.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_Midi.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_Misc.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_Network.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_PlatformUtils.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_SystemStats.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_Threads.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_Windowing.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\win32_headers.h"
>
</File>
</Filter>
</Filter>
<Filter
Name="streams"
@ -6007,78 +6080,6 @@
</File>
</Filter>
</Filter>
<Filter
Name="win32_code"
>
<File
RelativePath="..\platform_specific_code\juce_win32_ASIO.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_AudioCDReader.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_DirectSound.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_DynamicLibraryLoader.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_DynamicLibraryLoader.h"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_FileChooser.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_Files.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_Fonts.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_Messaging.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_Midi.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_Misc.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_Network.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_PlatformUtils.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_SystemStats.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_Threads.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\juce_win32_Windowing.cpp"
>
</File>
<File
RelativePath="..\platform_specific_code\win32_headers.h"
>
</File>
</Filter>
</Filter>
</Files>
<Globals>

View file

@ -144,6 +144,7 @@
Name="VCCLCompilerTool"
Optimization="2"
InlineFunctionExpansion="1"
WholeProgramOptimization="true"
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS"
StringPooling="true"
RuntimeLibrary="0"
@ -175,6 +176,8 @@
AdditionalLibraryDirectories="../../bin"
ProgramDatabaseFile=".\Release/juce_application.pdb"
SubSystem="2"
EnableCOMDATFolding="2"
LinkTimeCodeGeneration="1"
TargetMachine="1"
/>
<Tool

View file

@ -51,12 +51,12 @@ public:
clearSingletonInstance();
}
juce_DeclareSingleton (FontList, false)
juce_DeclareSingleton_SingleThreaded (FontList, false)
StringArray fontNames;
};
juce_ImplementSingleton (FontList)
juce_ImplementSingleton_SingleThreaded (FontList)
void FontPropertyComponent::preloadAllFonts()
{

View file

@ -61,7 +61,7 @@ public:
clearSingletonInstance();
}
juce_DeclareSingleton (TopLevelWindowManager, false)
juce_DeclareSingleton_SingleThreaded (TopLevelWindowManager, false)
void timerCallback()
{
@ -138,7 +138,7 @@ private:
const TopLevelWindowManager& operator= (const TopLevelWindowManager&);
};
juce_ImplementSingleton (TopLevelWindowManager)
juce_ImplementSingleton_SingleThreaded (TopLevelWindowManager)
void juce_CheckCurrentlyFocusedTopLevelWindow()
{