makefile.mk (7871dc3e) | makefile.mk (fd5f88ec) |
---|---|
1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance --- 16 unchanged lines hidden (view full) --- 25PRJNAME := sal 26 27TARGET := qa_rtl_strings 28 29ENABLE_EXCEPTIONS := TRUE 30 31.INCLUDE: settings.mk 32 | 1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance --- 16 unchanged lines hidden (view full) --- 25PRJNAME := sal 26 27TARGET := qa_rtl_strings 28 29ENABLE_EXCEPTIONS := TRUE 30 31.INCLUDE: settings.mk 32 |
33.IF "$(ENABLE_UNIT_TESTS)" != "YES" 34all: 35 @echo unit tests are disabled. Nothing to do. 36 37.ELSE 38 39 |
|
33CFLAGS+= $(LFS_CFLAGS) 34CXXFLAGS+= $(LFS_CFLAGS) 35 | 40CFLAGS+= $(LFS_CFLAGS) 41CXXFLAGS+= $(LFS_CFLAGS) 42 |
36CFLAGSCXX += $(CPPUNIT_CFLAGS) 37 38SHL1TARGET := $(TARGET) 39SHL1OBJS := \ | 43APP1TARGET := $(TARGET) 44APP1OBJS := \ |
40 $(SLO)$/test_oustringbuffer_utf32.obj \ 41 $(SLO)$/test_oustring_compare.obj \ 42 $(SLO)$/test_oustring_convert.obj \ 43 $(SLO)$/test_oustring_endswith.obj \ 44 $(SLO)$/test_oustring_noadditional.obj | 45 $(SLO)$/test_oustringbuffer_utf32.obj \ 46 $(SLO)$/test_oustring_compare.obj \ 47 $(SLO)$/test_oustring_convert.obj \ 48 $(SLO)$/test_oustring_endswith.obj \ 49 $(SLO)$/test_oustring_noadditional.obj |
45SHL1IMPLIB := i$(SHL1TARGET) 46SHL1STDLIBS := $(SALLIB) $(CPPUNITLIB) $(TESTSHL2LIB) 47SHL1VERSIONMAP := $(PRJ)$/qa$/export.map 48DEF1NAME := $(SHL1TARGET) | 50APP1STDLIBS := $(SALLIB) $(GTESTLIB) $(TESTSHL2LIB) 51APP1RPATH = NONE 52APP1TEST = enabled |
49 50.INCLUDE: target.mk | 53 54.INCLUDE: target.mk |
51.INCLUDE : _cppunit.mk | 55 56.ENDIF # "$(ENABLE_UNIT_TESTS)" != "YES" |