1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +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" InlineFunctionExpansion="1"
EnableIntrinsicFunctions="true" EnableIntrinsicFunctions="true"
FavorSizeOrSpeed="1" FavorSizeOrSpeed="1"
WholeProgramOptimization="true"
PreprocessorDefinitions="WIN32;NDEBUG;_LIB" PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
StringPooling="true" StringPooling="true"
RuntimeLibrary="0" RuntimeLibrary="0"
@ -5028,6 +5029,78 @@
RelativePath="..\..\..\src\juce_core\io\network\juce_URL.h" RelativePath="..\..\..\src\juce_core\io\network\juce_URL.h"
> >
</File> </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>
<Filter <Filter
Name="streams" Name="streams"
@ -6007,78 +6080,6 @@
</File> </File>
</Filter> </Filter>
</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> </Filter>
</Files> </Files>
<Globals> <Globals>

View file

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

View file

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

View file

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