So I’m with Windows XP SP3. I have the last version of IntroJucer.exe (retrieved today) in “c:\SDK\Juce2”.
I open the IntroJucer, I create a new project in D:\Projets\Test which is a plug-in. I delete the exporter for Visual Studio 2010 and I add one for Visual Studio 2008. In modules, I click on “Set Copying Mode” and select “Disable”. The C:\SDK\Juce2\Module folder is selected by default into modules source folder. I save+open in Visual Studio 2008, and I have the following files generated automatically :
JuceHeader.h
[code]/*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
This is the header file that your files should include in order to get all the
JUCE library headers. You should avoid including the JUCE headers directly in
your own source files, because that wouldn't pick up the correct configuration
options for your app.
*/
#ifndef APPHEADERFILE_VNZK8N
#define APPHEADERFILE_VNZK8N
#include “AppConfig.h”
#if ! DONT_SET_USING_JUCE_NAMESPACE
// If your code uses a lot of JUCE classes, then this will obviously save you
// a lot of typing, but can be disabled by setting DONT_SET_USING_JUCE_NAMESPACE.
using namespace juce;
#endif
namespace ProjectInfo
{
const char* const projectName = “NewProject”;
const char* const versionString = “1.0.0”;
const int versionNumber = 0x10000;
}
#endif // APPHEADERFILE_VNZK8N[/code]
AppConfig.h
[code]/*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
There's a section below where you can add your own custom code safely, and the
Introjucer will preserve the contents of that block, but the best way to change
any of these definitions is by using the Introjucer's project settings.
Any commented-out settings will assume their default values.
*/
#ifndef JUCE_APPCONFIG_VNZK8N
#define JUCE_APPCONFIG_VNZK8N
//==============================================================================
// [BEGIN_USER_CODE_SECTION]
// (You can add your own code in this section, and the Introjucer will not overwrite it)
// [END_USER_CODE_SECTION]
//==============================================================================
#endif // JUCE_APPCONFIG_VNZK8N
[/code]
So, no JUCE module is linked into my project
There is nothing in the project properties too…