When I add a 'post build' expression (ex. dir or move) in project window: properties/build steps/post-build steps->command, I've got the following error:
...
make --no-print-directory post-build
src/CGetNetworkInfo.d:1: *** missing separator. Stop.
make: *** [C:/Symbian/9.1/S60_3rd/epoc32/release/WINSCW/UDEB/test0.exe] Error 2
make: Target `all' not remade because of errors.
Build complete for project test0
this error is generated from makefile file:
all: secondary-outputs C:/Symbian/9.1/S60_3rd/epoc32/release/WINSCW/UDEB/test0.exe $(SIS_OBJS)
# Tool invocations
C:/Symbian/9.1/S60_3rd/epoc32/release/WINSCW/UDEB/test0.exe: $(OBJS) $(USER_OBJS)
@echo 'Building target: $@'
@echo 'Invoking: WINSCW C/C++ Linker'
@echo mwldsym2.exe -sym full -subsystem windows -msgstyle parseable -nowraplines -nodefaultlibs -stdlib -noimplib -m="?_E32Bootstrap@@YGXXZ" -L"${EPOCROOT}epoc32\release\winscw\udeb" -o "$@" -search $(OBJS) $(USER_OBJS) $(LIBS)
@mwldsym2.exe -sym full -subsystem windows -msgstyle parseable -nowraplines -nodefaultlibs -stdlib -noimplib -m="?_E32Bootstrap@@YGXXZ" -L"${EPOCROOT}epoc32\release\winscw\udeb" -o "$@" -search $(OBJS) $(USER_OBJS) $(LIBS)
@echo 'Finished building target: $@'
@echo ' '
$(MAKE) --no-print-directory post-build
# Other Targets
clean:
-$(RM) $(AIF_OBJS_FOR_DEL)$(LINKER_OUTPUT_TYPES_OUTPUTS_FOR_DEL)$(OBJS_FOR_DEL)$(MIF_OBJS_FOR_DEL)$(RSC_OBJS_FOR_DEL)$(DEF_OBJS_FOR_DEL)$(DEPS_FOR_DEL)$(MBM_OBJS_FOR_DEL) C:\Symbian\9.1\S60_3rd\epoc32\release\WINSCW\UDEB\test0.exe
-@echo ' '
post-build:
-dir
-@echo ' '
How to add a post-build action in Carbide.c++



