Hi, I just downloaded JUCE and got started through projucer and created a new GUI project which says “Hello World” program. But I’m unable to run it due to “Use of undeclared identifier setSize/juce/getLookAndFeel”
sure, thanks for helping with this so far @ImJimmi . I didn’t change anything from the boilerplate code generated from projucer yet.
#pragma once
#include <JuceHeader.h>
//==============================================================================
/*
This component lives inside our window, and this is where you should put all
your controls and content.
*/
class MainComponent : public juce::Component
{
public:
//==============================================================================
MainComponent();
~MainComponent() override;
//==============================================================================
void paint (juce::Graphics&) override;
void resized() override;
private:
//==============================================================================
// Your private member variables go here...
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (MainComponent)
};
Hi, I created a project prior to getting this path right, so even after I fixed the path the created project doesn’t build. But now I just created a new GUI project which simply works.