Project.meta of Main | Project.meta of Sub |
---|---|
|
|
bake -b Debug
What happens now?
g++ -c -Wall -g3 -Iinclude -I../Main/include -o Debug_Main/src/xy.o src/xy.cpp
ar -rc Debug_Main/libSub.a Debug_Main/src/xy.o
g++ -c -Wall -Iinclude -o Debug/src/main.o src/main.cpp
g++ -o Debug/Main.exe Debug/src/main.o ../Sub/Debug_Main/libSub.a -L../Sub/lib -la -lb
The library search paths and libraries are added in the specified order.
echo Main.exe built.
The variable was automatically substituted.