X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7b4138e2840d3c8b8eb7433da68ae38ea75e1abe..3c3ead1d1513a5eb79091a604f4e42b45d1bdf5d:/tests/makefile.bcc diff --git a/tests/makefile.bcc b/tests/makefile.bcc index 8e503ff513..77e128c2ba 100644 --- a/tests/makefile.bcc +++ b/tests/makefile.bcc @@ -49,6 +49,7 @@ TEST_OBJECTS = \ $(OBJS)\test_evthandler.obj \ $(OBJS)\test_timertest.obj \ $(OBJS)\test_exec.obj \ + $(OBJS)\test_filetest.obj \ $(OBJS)\test_filekind.obj \ $(OBJS)\test_filenametest.obj \ $(OBJS)\test_filesystest.obj \ @@ -57,6 +58,7 @@ TEST_OBJECTS = \ $(OBJS)\test_hashes.obj \ $(OBJS)\test_intltest.obj \ $(OBJS)\test_lists.obj \ + $(OBJS)\test_logtest.obj \ $(OBJS)\test_longlongtest.obj \ $(OBJS)\test_convautotest.obj \ $(OBJS)\test_mbconvtest.obj \ @@ -94,6 +96,7 @@ TEST_OBJECTS = \ $(OBJS)\test_queue.obj \ $(OBJS)\test_tls.obj \ $(OBJS)\test_uris.obj \ + $(OBJS)\test_url.obj \ $(OBJS)\test_vectors.obj \ $(OBJS)\test_evtconnection.obj \ $(OBJS)\test_weakref.obj \ @@ -123,6 +126,7 @@ TEST_GUI_OBJECTS = \ $(OBJS)\test_gui_clone.obj \ $(OBJS)\test_gui_propagation.obj \ $(OBJS)\test_gui_fonttest.obj \ + $(OBJS)\test_gui_image.obj \ $(OBJS)\test_gui_rawbmp.obj \ $(OBJS)\test_gui_htmlwindow.obj \ $(OBJS)\test_gui_guifuncs.obj \ @@ -141,10 +145,7 @@ PORTNAME = base !if "$(USE_GUI)" == "1" PORTNAME = msw !endif -!if "$(BUILD)" == "debug" && "$(DEBUG_FLAG)" == "default" -WXDEBUGFLAG = d -!endif -!if "$(DEBUG_FLAG)" == "1" +!if "$(BUILD)" == "debug" WXDEBUGFLAG = d !endif !if "$(UNICODE)" == "1" @@ -174,11 +175,8 @@ __test_gui___depname = $(OBJS)\test_gui.exe !if "$(WXUNIV)" == "1" __WXUNIV_DEFINE_p_3 = -d__WXUNIVERSAL__ !endif -!if "$(BUILD)" == "debug" && "$(DEBUG_FLAG)" == "default" -__DEBUG_DEFINE_p_3 = -d__WXDEBUG__ -!endif -!if "$(DEBUG_FLAG)" == "1" -__DEBUG_DEFINE_p_3 = -d__WXDEBUG__ +!if "$(DEBUG_FLAG)" == "0" +__DEBUG_DEFINE_p_3 = -dwxDEBUG_LEVEL=0 !endif !if "$(USE_EXCEPTIONS)" == "0" __EXCEPTIONS_DEFINE_p_3 = -dwxNO_EXCEPTIONS @@ -266,11 +264,8 @@ __RUNTIME_LIBS_0 = !if "$(WXUNIV)" == "1" __WXUNIV_DEFINE_p = -D__WXUNIVERSAL__ !endif -!if "$(BUILD)" == "debug" && "$(DEBUG_FLAG)" == "default" -__DEBUG_DEFINE_p = -D__WXDEBUG__ -!endif -!if "$(DEBUG_FLAG)" == "1" -__DEBUG_DEFINE_p = -D__WXDEBUG__ +!if "$(DEBUG_FLAG)" == "0" +__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0 !endif !if "$(USE_EXCEPTIONS)" == "0" __EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS @@ -371,7 +366,7 @@ $(OBJS)\test_gui.exe: $(OBJS)\test_gui_dummy.obj $(TEST_GUI_OBJECTS) $(OBJS)\t data: if not exist $(OBJS) mkdir $(OBJS) - for %f in (testdata.fc) do if not exist $(OBJS)\%f copy .\%f $(OBJS) + for %f in (horse.ani horse.bmp horse.cur horse.gif horse.ico horse.jpg horse.pcx horse.png horse.pnm horse.tga horse.tif horse.xpm) do if not exist $(OBJS)\%f copy .\%f $(OBJS) fr: if not exist $(OBJS)\intl\fr mkdir $(OBJS)\intl\fr @@ -416,6 +411,9 @@ $(OBJS)\test_timertest.obj: .\events\timertest.cpp $(OBJS)\test_exec.obj: .\exec\exec.cpp $(CXX) -q -c -P -o$@ $(TEST_CXXFLAGS) .\exec\exec.cpp +$(OBJS)\test_filetest.obj: .\file\filetest.cpp + $(CXX) -q -c -P -o$@ $(TEST_CXXFLAGS) .\file\filetest.cpp + $(OBJS)\test_filekind.obj: .\filekind\filekind.cpp $(CXX) -q -c -P -o$@ $(TEST_CXXFLAGS) .\filekind\filekind.cpp @@ -440,6 +438,9 @@ $(OBJS)\test_intltest.obj: .\intl\intltest.cpp $(OBJS)\test_lists.obj: .\lists\lists.cpp $(CXX) -q -c -P -o$@ $(TEST_CXXFLAGS) .\lists\lists.cpp +$(OBJS)\test_logtest.obj: .\log\logtest.cpp + $(CXX) -q -c -P -o$@ $(TEST_CXXFLAGS) .\log\logtest.cpp + $(OBJS)\test_longlongtest.obj: .\longlong\longlongtest.cpp $(CXX) -q -c -P -o$@ $(TEST_CXXFLAGS) .\longlong\longlongtest.cpp @@ -551,6 +552,9 @@ $(OBJS)\test_tls.obj: .\thread\tls.cpp $(OBJS)\test_uris.obj: .\uris\uris.cpp $(CXX) -q -c -P -o$@ $(TEST_CXXFLAGS) .\uris\uris.cpp +$(OBJS)\test_url.obj: .\uris\url.cpp + $(CXX) -q -c -P -o$@ $(TEST_CXXFLAGS) .\uris\url.cpp + $(OBJS)\test_vectors.obj: .\vectors\vectors.cpp $(CXX) -q -c -P -o$@ $(TEST_CXXFLAGS) .\vectors\vectors.cpp @@ -617,6 +621,9 @@ $(OBJS)\test_gui_propagation.obj: .\events\propagation.cpp $(OBJS)\test_gui_fonttest.obj: .\font\fonttest.cpp $(CXX) -q -c -P -o$@ $(TEST_GUI_CXXFLAGS) .\font\fonttest.cpp +$(OBJS)\test_gui_image.obj: .\image\image.cpp + $(CXX) -q -c -P -o$@ $(TEST_GUI_CXXFLAGS) .\image\image.cpp + $(OBJS)\test_gui_rawbmp.obj: .\image\rawbmp.cpp $(CXX) -q -c -P -o$@ $(TEST_GUI_CXXFLAGS) .\image\rawbmp.cpp