Custom project building. How?
-
My project is building by run shell command
$ make install part_of_project
I am using it because it contain 3 different languages. My question is - How to define this command in Qt Creator build environment. I've been trying to use "Custom Process Step" but it's not working properly. My script contain $(PWD) for resolving project root path, but under Qt Creator it's not working. It's don't see the right root path of project and as result do not including correctly. When I am running it directly from shell - everything OK.
How to solve it?
-
My project is building by run shell command
$ make install part_of_project
I am using it because it contain 3 different languages. My question is - How to define this command in Qt Creator build environment. I've been trying to use "Custom Process Step" but it's not working properly. My script contain $(PWD) for resolving project root path, but under Qt Creator it's not working. It's don't see the right root path of project and as result do not including correctly. When I am running it directly from shell - everything OK.
How to solve it?
Please try this: http://doc.qt.io/qtcreator/creator-project-generic.html
-
@aha_1980 said in Custom project building. How?:
Thanks ... Will try it now and reply after within result of it.
-
My Makefile contain this row
include $(PWD)/makefiles/additional.mk
or
include $(shell pwd)/makefiles/additional.mk
The $(PWD) not working in Qt Creator only when I am trying to run make. Why it might be? Is there way to fix it?
-
Hi,
What about using
$$PWD
?