I'm a newbie to whole C++ world.. At my new project I decided to use crossplatform capable enviroment I looking aroud qt for 2 weeks and most of the users warn me about licencing issues and I'm trying to do sth with Codelite and wxwidgets...
I'm using a Windows 10 64 bit system.. I downloaded the whole stuff... I compiled wxwidgets just like wxwiki says..(I tried the pre compiled package bur compiler complained about versions is not match)
I get back to codelite and make a new enviroment and a project simple helloworld gui wit wxcraft I couldn't compile and run the sample..
I watched lots of videos and found that I must write sth to enviroment variables, so I changed them like this..
Code: Select all
CodeLiteDir=C:\Program Files\CodeLite
WXWIN=C:\wxWidgets-3.0.2
WXCFG=gcc_dll\mswu
PATH=C:\wxWidgets-3.0.2\lib\gcc_dll;$PATH
Code: Select all
C:\WINDOWS\system32\cmd.exe /C C:/TDM-GCC-64/bin/mingw32-make.exe -j8 SHELL=cmd.exe -e -f Makefile
"----------Building project:[ Dene - Debug ]----------"
Please use the --wxcfg flag (as in wx-config --wxcfg=gcc_dll/mswud)
or set the environment variable WXCFG (as in WXCFG=gcc_dll/mswud)
to specify which configuration exactly you want to use.
Please use the --wxcfg flag (as in wx-config --wxcfg=gcc_dll/mswud)
or set the environment variable WXCFG (as in WXCFG=gcc_dll/mswud)
to specify which configuration exactly you want to use.
Please use the --wxcfg flag (as in wx-config --wxcfg=gcc_dll/mswud)
or set the environment variable WXCFG (as in WXCFG=gcc_dll/mswud)
to specify which configuration exactly you want to use.
mingw32-make.exe[1]: Entering directory 'C:/Users/Burak/Desktop/DENEME/Deneme/Dene'
C:/TDM-GCC-64/bin/g++.exe -o ./Debug/Dene @"Dene.txt" -L. wx-config Error: No valid setup.h of wxWidgets has been found at location: C:/wxWidgets-3.0.2/lib/gcc_dll\mswud/wx/setup.h -mwindows
g++.exe: error: wx-config: No such file or directory
g++.exe: error: Error:: Invalid argument
g++.exe: error: No: No such file or directory
g++.exe: error: valid: No such file or directory
g++.exe: error: setup.h: No such file or directory
g++.exe: error: of: No such file or directory
g++.exe: error: wxWidgets: No such file or directory
g++.exe: error: has: No such file or directory
g++.exe: error: been: No such file or directory
g++.exe: error: found: No such file or directory
g++.exe: error: at: No such file or directory
g++.exe: error: location:: Invalid argument
g++.exe: error: C:/wxWidgets-3.0.2/lib/gcc_dll\mswud/wx/setup.h: No such file or directory
mingw32-make.exe[1]: *** [Debug/Dene] Error 1
Dene.mk:81: recipe for target 'Debug/Dene' failed
mingw32-make.exe[1]: Leaving directory 'C:/Users/Burak/Desktop/DENEME/Deneme/Dene'
mingw32-make.exe: *** [All] Error 2
Makefile:4: recipe for target 'All' failed
====1 errors, 0 warnings====
"or set the environment variable WXCFG (as in WXCFG=gcc_dll/mswud)"
I'm near to give up, what I'm doing wrong, I spend the whole day with reading reading and reading I've got nothing !
Please Help...
PS: Can I compile wxwidgets samples with codelite??