Hi,

As far as I know, in cpplite the "compile commands" are the exact command(s?) you want to use to compile your stuff.

Something like (*):

C:\cygwin64\bin\c++.exe -g -I\cygwin64\whatever\include myfile.c main.c another.c -o myfile

The "run command" would then be:

".\myfile"

And the "clean command" would be

"del myfile"

(Can't tell if you need to use double slashes in Windows, for instance ".\\myfile" instead of ".\myfile", that's something you'll have to experiment yourself).

These are very basic commands, we'll have to wait until cnd is ready to merge to recover the Makefile projects.

Cheers,
Antonio

(*)
I don't know if cpplite admits multiple commands, like:

C:\cygwin64\bin\c++.exe -c -g myfile.c -o myfile.o
C:\cygwin64\bin\c++.exe -c -g b.c -o b.o
C:\cygwin64\bin\c++.exe myfile.o b.o -Lwhatever -o myfile



El 28/1/22 a las 0:47, slipbits escribió:
I tried to place the path to my compiler in
Windows->Files-><right-click project>->Properties->Editor->Compile Commands ["C:\cygwin64\bin\c++.exe"]
with no good effect.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to