Changeset 11551 in vbox for trunk/src/VBox/Main/testcase/makefile.tstVBoxAPILinux
- Timestamp:
- Aug 21, 2008 5:16:02 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/testcase/makefile.tstVBoxAPILinux
r8155 r11551 21 21 PATH_BIN = ../../.. 22 22 23 # This setting must be the same as used when building VBoxXPCOM.so. 24 # If you get a lot of unresolved symbols, try commenting it out. 25 VBOX_WITH_XPCOM_NAMESPACE_CLEANUP=1 26 23 27 PATH_XPCOM_IDL = $(PATH_XPCOM)/idl 24 28 INCS_XPCOM = $(PATH_XPCOM)/include \ … … 27 31 $(PATH_XPCOM)/include/xpcom/xpcom \ 28 32 $(PATH_XPCOM)/include/xpcom/ipcd 33 34 ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP 35 DEFS_XPCOM += VBOX_WITH_XPCOM_NAMESPACE_CLEANUP 36 endif 37 29 38 30 39 # … … 38 47 39 48 tstVBoxAPILinux.o: tstVBoxAPILinux.cpp 40 g++ -c -DRT_OS_LINUX -g -fshort-wchar $(addprefix -I, $(INCS_XPCOM)) -o $@ tstVBoxAPILinux.cpp49 g++ -c -DRT_OS_LINUX -g -fshort-wchar $(addprefix -I, $(INCS_XPCOM)) $(addprefix -D, $(DEFS_XPCOM)) -o $@ tstVBoxAPILinux.cpp 41 50 42 51 clean:
Note:
See TracChangeset
for help on using the changeset viewer.