Cant build files
-
I just to use qt creator, and i have trouble to build files that i created with codeblocks but that doesn`t matter i think. I click on file/open file or project and choose file test.c for example and when test.c is opened i cant click on build or start or debug.
-
@kzzmzz
Hi
You need to have a project file.
( a .pro file)
Else you are just editing the file and Creator do not know how to compile/build the file.Please read this
http://doc.qt.io/qtcreator/creator-project-creating.html -
Hi and welcome to devnet,
How did you create your project ?
-
No, that's fine. What exact error are you getting ?
-
This is what i get
20:20:25: Running steps for project untitled2...
20:20:25: Starting: "/usr/bin/make" clean
rm -f C.o Reseni.o Zadaci.o iz.o Chapter.o 9.o -.o Zadatak.o 6.o
rm: invalid option -- '.'
Try 'rm --help' for more information.
Makefile:496: recipe for target 'clean' failed
rm -f *~ core *.core
make: [clean] Error 1 (ignored)
20:20:26: The process "/usr/bin/make" exited normally.
20:20:26: Elapsed time: 00:00. -
Can you show your .pro file ?
-
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
CONFIG -= qtSOURCES += main.c
../Desktop/C Reseni Zadaci iz Knjiga/Chapter-9-Zadatak-6.cyes i have gcc installed
When im making new file everything is ok, i can build, debuge etc
but when i want to add my old c files i cant
-
Just for test.
rename it to
myfile.c and put it next to main.c ( in same folder)
Then add it.
I suspect it might be path related. -
At the very least your are missing quotes in your .pro files.
../Desktop/C Reseni Zadaci iz Knjiga/Chapter-9-Zadatak-6.c
each space tells qmake that what follows is a new file hence your errors with the "strange" paths. -
-
22:02:17: Running steps for project Chapter-9-Zadatak-7...
22:02:17: Configuration unchanged, skipping qmake step.
22:02:17: Starting: "/usr/bin/make"
make: *** No rule to make target '../Desktop/C', needed by 'C.o'. Stop.
22:02:17: The process "/usr/bin/make" exited with code 2.
Error while building/deploying project Chapter-9-Zadatak-7 (kit: Desktop Qt 5.6.1 GCC 64bit)
When executing step "Make"
22:02:17: Elapsed time: 00:00