Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
8bd51f02
Kaydet (Commit)
8bd51f02
authored
Nis 16, 2010
tarafından
Jens-Heiner Rechtien
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
CWS-TOOLING: integrate CWS sb118
üst
0ff66a76
4035651c
Hide whitespace changes
Inline
Side-by-side
Showing
31 changed files
with
181 additions
and
142 deletions
+181
-142
build.lst
chart2/prj/build.lst
+1
-0
Test.java
chart2/qa/unoapi/Test.java
+51
-0
makefile.mk
chart2/qa/unoapi/makefile.mk
+18
-12
controller.map
chart2/source/controller/controller.map
+0
-8
makefile.mk
chart2/source/controller/makefile.mk
+1
-1
makefile.mk
chart2/source/model/makefile.mk
+1
-1
model.map
chart2/source/model/model.map
+0
-8
tools.map
chart2/source/tools/tools.map
+0
-8
view.map
chart2/source/view/view.map
+0
-9
makefile.mk
sc/addin/datefunc/makefile.mk
+0
-4
makefile.mk
sc/addin/makefile.mk
+0
-5
exports.map
sc/addin/rot13/exports.map
+1
-1
makefile.mk
sc/addin/rot13/makefile.mk
+0
-5
makefile.mk
sc/addin/util/makefile.mk
+0
-4
build.lst
sc/prj/build.lst
+1
-0
Test.java
sc/qa/unoapi/Test.java
+51
-0
knownissues.xcl
sc/qa/unoapi/knownissues.xcl
+27
-2
makefile.mk
sc/qa/unoapi/makefile.mk
+19
-11
inputwin.cxx
sc/source/ui/app/inputwin.cxx
+3
-2
makefile.mk
sc/util/makefile.mk
+2
-2
sc.map
sc/util/sc.map
+0
-8
scd.map
sc/util/scd.map
+0
-8
scfilt.map
sc/util/scfilt.map
+1
-1
scui.map
sc/util/scui.map
+1
-1
vbaobj.map
sc/util/vbaobj.map
+0
-9
exports.map
scaddins/source/analysis/exports.map
+0
-10
makefile.mk
scaddins/source/analysis/makefile.mk
+1
-1
exports.map
scaddins/source/datefunc/exports.map
+0
-10
makefile.mk
scaddins/source/datefunc/makefile.mk
+1
-1
exports.map
sccomp/source/solver/exports.map
+0
-9
makefile.mk
sccomp/source/solver/makefile.mk
+1
-1
No files found.
chart2/prj/build.lst
Dosyayı görüntüle @
8bd51f02
...
...
@@ -24,3 +24,4 @@ ch chart2\source\controller\chartapiwrapper nmake - all ch_source_controlle
ch chart2\source\controller\main nmake - all ch_source_controller_main ch_inc NULL
ch chart2\source\controller\menus nmake - all ch_source_controller_menus ch_inc NULL
ch chart2\prj get - all ch_prj NULL
ch chart2\qa\unoapi nmake - all ch_qa_unoapi NULL
chart2/qa/unoapi/Test.java
0 → 100644
Dosyayı görüntüle @
8bd51f02
/*************************************************************************
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
************************************************************************/
package
org
.
openoffice
.
chart2
.
qa
.
unoapi
;
import
org.openoffice.Runner
;
import
org.openoffice.test.OfficeConnection
;
import
static
org
.
junit
.
Assert
.*;
public
final
class
Test
{
@org
.
junit
.
Before
public
void
setUp
()
throws
Exception
{
connection
.
setUp
();
}
@org
.
junit
.
After
public
void
tearDown
()
throws
InterruptedException
,
com
.
sun
.
star
.
uno
.
Exception
{
connection
.
tearDown
();
}
@org
.
junit
.
Test
public
void
test
()
{
assertTrue
(
Runner
.
run
(
"-sce"
,
"sch.sce"
,
"-xcl"
,
"knownissues.xcl"
,
"-tdoc"
,
"testdocuments"
,
"-cs"
,
connection
.
getDescription
()));
}
private
final
OfficeConnection
connection
=
new
OfficeConnection
();
}
chart2/qa/unoapi/makefile.mk
Dosyayı görüntüle @
8bd51f02
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
#
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
...
...
@@ -22,21 +21,28 @@
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************
#***********************************************************************/
EXTERNAL_WARNINGS_NOT_ERRORS
:=
TRUE
.IF
"$(OOO_SUBSEQUENT_TESTS)"
==
""
nothing .PHONY
:
.ELSE
PRJ
=
..
$/
..
PRJ
=
../..
PRJNAME
=
chart2
TARGET
=
qa_unoapi
PRJNAME
=
sch
TARGET
=
qa_unoapi
.IF
"$(OOO_JUNIT_JAR)"
!=
""
PACKAGE
=
org/openoffice/chart2/qa/unoapi
JAVATESTFILES
=
Test.java
JAVAFILES
=
$(JAVATESTFILES)
JARFILES
=
OOoRunner.jar ridl.jar test.jar
EXTRAJARFILES
=
$(OOO_JUNIT_JAR)
.END
.INCLUDE
:
settings.mk
.INCLUDE
:
target.mk
.INCLUDE
:
installationtest.mk
ALLTAR
:
UNOAPI_TEST
ALLTAR
:
javatest
UNOAPI_TEST
:
+$(SOLARENV)$/bin$/checkapi
-sce
sch.sce
-xcl
knownissues.xcl
-tdoc
$(PWD)$/testdocuments
.END
chart2/source/controller/controller.map
deleted
100644 → 0
Dosyayı görüntüle @
0ff66a76
UDK_3_0_0 {
global:
component_getImplementationEnvironment;
component_writeInfo;
component_getFactory;
local:
*;
};
chart2/source/controller/makefile.mk
Dosyayı görüntüle @
8bd51f02
...
...
@@ -100,7 +100,7 @@ SHL1STDLIBS= $(CHARTTOOLS) \
#specifies the exported symbols for Windows only:
SHL1DEF
=
$(MISC)$/$(SHL1TARGET)
.def
SHL1VERSIONMAP
=
controller
.map
SHL1VERSIONMAP
=
$(SOLARENV)
/src/component
.map
#--------definition file
...
...
chart2/source/model/makefile.mk
Dosyayı görüntüle @
8bd51f02
...
...
@@ -86,7 +86,7 @@ SHL1STDLIBS= $(CHARTTOOLS) \
#specifies the exported symbols for Windows only:
SHL1DEF
=
$(MISC)$/$(SHL1TARGET)
.def
SHL1VERSIONMAP
=
model
.map
SHL1VERSIONMAP
=
$(SOLARENV)
/src/component
.map
#--------definition file
...
...
chart2/source/model/model.map
deleted
100644 → 0
Dosyayı görüntüle @
0ff66a76
CHART_1_0 {
global:
component_getImplementationEnvironment;
component_writeInfo;
component_getFactory;
local:
*;
};
chart2/source/tools/tools.map
deleted
100644 → 0
Dosyayı görüntüle @
0ff66a76
CHART_1_0 {
global:
component_getImplementationEnvironment;
component_writeInfo;
component_getFactory;
local:
*;
};
chart2/source/view/view.map
deleted
100644 → 0
Dosyayı görüntüle @
0ff66a76
CHART_1_0 {
global:
component_getImplementationEnvironment;
component_writeInfo;
component_getFactory;
local:
*;
};
sc/addin/datefunc/makefile.mk
Dosyayı görüntüle @
8bd51f02
...
...
@@ -86,11 +86,7 @@ $(MISC)$/$(TARGET).lst : \
$(INCCOM)$/xlang.h
\
..$/inc$/$(TARGET).hrc
\
..$/inc$/addin.h
.IF
"$(GUI)"
==
"UNX"
||
"$(USE_SHELL)"
!=
"4nt"
echo
$<
>
$@
.ELSE
echo $(<
:
+"
\n
":s/ //) > $@
.ENDIF
# --- Def-File ---
...
...
sc/addin/makefile.mk
Dosyayı görüntüle @
8bd51f02
...
...
@@ -41,10 +41,5 @@ TARGET=addin
ALLTAR
:
$(MISC)$/cl2c.pl
$(MISC)$/cl2c.pl
:
util/cl2c.pl
.IF
"$(GUI)"
==
"UNX"
||
"$(USE_SHELL)"
!=
"4nt"
tr
-d
"\015"
<
util$/cl2c.pl
>
$@
chmod
+rw
$@
.ELSE
@$(COPY)
util$/cl2c.pl
$@
.ENDIF
sc/addin/rot13/exports.map
Dosyayı görüntüle @
8bd51f02
SC_1
_0 {
UDK_3_0
_0 {
global:
GetFunctionCount;
GetFunctionData;
...
...
sc/addin/rot13/makefile.mk
Dosyayı görüntüle @
8bd51f02
...
...
@@ -85,9 +85,4 @@ $(MISC)$/rot.lst : \
$(INCCOM)$/xlang.h
\
..$/inc$/rot13.hrc
\
..$/inc$/addin.h
.IF
"$(GUI)"
==
"UNX"
||
"$(USE_SHELL)"
!=
"4nt"
@echo
$<
>
$@
.ELSE
@echo $(<
:
+"
\n
":s/ //) > $@
.ENDIF
sc/addin/util/makefile.mk
Dosyayı görüntüle @
8bd51f02
...
...
@@ -37,13 +37,9 @@ TARGET=autil
$(BIN)$/addin.zip
:
\
$(MISC)$/rot.lst
\
$(MISC)$/dfa.lst
.IF
"$(GUI)"
==
"UNX"
||
"$(USE_SHELL)"
!=
"4nt"
$(TYPE)
$(MISC)$/rot.lst
|
tr
-s
" "
"\n"
|
zip
-@
-u
-j
-ll
$(BIN)$/addin.zip
$(CHECKZIPRESULT)
$(TYPE)
$(MISC)$/dfa.lst
|
tr
-s
" "
"\n"
|
zip
-@
-u
-j
-ll
$(BIN)$/addin.zip
$(CHECKZIPRESULT)
chmod
+rw
$(BIN)$/addin.zip
.ELSE
$(TYPE)
$<
|
zip
-@
-u
-j
$(BIN)$/addin.zip
$(CHECKZIPRESULT)
.ENDIF
.INCLUDE
:
target.mk
...
...
sc/prj/build.lst
Dosyayı görüntüle @
8bd51f02
...
...
@@ -48,3 +48,4 @@ sc sc\addin\datefunc nmake - all sc_addfu sc_add sc_sdi sc_inc NULL
sc sc\addin\rot13 nmake - all sc_adrot sc_add sc_sdi sc_inc NULL
sc sc\addin\util nmake - all sc_adutil sc_addfu sc_adrot sc_sdi sc_inc NULL
sc sc\util nmake - all sc_util sc_addfu sc_adrot sc_adutil sc_app sc_attr sc_cctrl sc_cosrc sc_data sc_dbgui sc_dif sc_docsh sc_drfnc sc_excel sc_form sc_html sc_lotus sc_qpro sc_misc sc_name sc_nvipi sc_opt sc_page sc_rtf sc_scalc sc_style sc_tool sc_uisrc sc_undo sc_unobj sc_view sc_xcl97 sc_xml sc_acc sc_ftools sc_inc sc_vba NULL
sc sc\qa\unoapi nmake - all sc_qa_unoapi NULL
sc/qa/unoapi/Test.java
0 → 100644
Dosyayı görüntüle @
8bd51f02
/*************************************************************************
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
************************************************************************/
package
org
.
openoffice
.
sc
.
qa
.
unoapi
;
import
org.openoffice.Runner
;
import
org.openoffice.test.OfficeConnection
;
import
static
org
.
junit
.
Assert
.*;
public
final
class
Test
{
@org
.
junit
.
Before
public
void
setUp
()
throws
Exception
{
connection
.
setUp
();
}
@org
.
junit
.
After
public
void
tearDown
()
throws
InterruptedException
,
com
.
sun
.
star
.
uno
.
Exception
{
connection
.
tearDown
();
}
@org
.
junit
.
Test
public
void
test
()
{
assertTrue
(
Runner
.
run
(
"-sce"
,
"sc.sce"
,
"-xcl"
,
"knownissues.xcl"
,
"-tdoc"
,
"testdocuments"
,
"-cs"
,
connection
.
getDescription
()));
}
private
final
OfficeConnection
connection
=
new
OfficeConnection
();
}
sc/qa/unoapi/knownissues.xcl
Dosyayı görüntüle @
8bd51f02
...
...
@@ -164,4 +164,30 @@ sc.ScAccessibleCsvGrid
### i91045 ###
sc.ScAccessibleDocumentPagePreview
#-> disabled in sc.sce
\ No newline at end of file
#-> disabled in sc.sce
### i109517 ###
sc.AccessibleEditableTextPara_PreviewCell::com::sun::star::accessibility::XAccessibleComponent
sc.ScAccessiblePageHeaderArea::com::sun::star::accessibility::XAccessibleEventBroadcaster
sc.ScAnnotationObj::com::sun::star::sheet::XSheetAnnotation
sc.ScAnnotationObj::com::sun::star::text::XSimpleText
sc.ScAnnotationObj::com::sun::star::text::XTextRange
sc.ScAnnotationShapeObj::com::sun::star::beans::XPropertySet
sc.ScAnnotationShapeObj::com::sun::star::drawing::CaptionShape
sc.ScAnnotationShapeObj::com::sun::star::drawing::LineProperties
sc.ScAnnotationShapeObj::com::sun::star::drawing::RotationDescriptor
sc.ScAnnotationShapeObj::com::sun::star::drawing::ShadowProperties
sc.ScAnnotationShapeObj::com::sun::star::drawing::Shape
sc.ScAnnotationShapeObj::com::sun::star::drawing::XShape
sc.ScAnnotationShapeObj::com::sun::star::drawing::XShapeDescriptor
sc.ScAnnotationShapeObj::com::sun::star::lang::XComponent
sc.ScAnnotationShapeObj::com::sun::star::style::CharacterProperties
sc.ScAnnotationShapeObj::com::sun::star::style::CharacterPropertiesAsian
sc.ScAnnotationShapeObj::com::sun::star::style::CharacterPropertiesComplex
sc.ScAnnotationShapeObj::com::sun::star::style::ParagraphPropertiesAsian
sc.ScAnnotationShapeObj::com::sun::star::style::ParagraphPropertiesComplex
sc.ScAnnotationShapeObj::com::sun::star::text::XSimpleText
sc.ScAnnotationShapeObj::com::sun::star::text::XTextRange
sc.ScAnnotationsObj::com::sun::star::container::XElementAccess
sc.ScCellObj::com::sun::star::sheet::XSheetAnnotationAnchor
sc.ScDataPilotFieldObj::com::sun::star::sheet::XDataPilotFieldGrouping
sc/qa/unoapi/makefile.mk
Dosyayı görüntüle @
8bd51f02
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
#
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
...
...
@@ -22,19 +21,28 @@
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************
#***********************************************************************/
PRJ
=
..
$/
..
.IF
"$(OOO_SUBSEQUENT_TESTS)"
==
""
nothing .PHONY
:
.ELSE
PRJNAME
=
sc
TARGET
=
qa_unoapi
PRJ
=
../..
PRJNAME
=
sc
TARGET
=
qa_unoapi
.INCLUDE
:
settings.mk
.IF
"$(OOO_JUNIT_JAR)"
!=
""
PACKAGE
=
org/openoffice/sc/qa/unoapi
JAVATESTFILES
=
Test.java
JAVAFILES
=
$(JAVATESTFILES)
JARFILES
=
OOoRunner.jar ridl.jar test.jar
EXTRAJARFILES
=
$(OOO_JUNIT_JAR)
.END
.INCLUDE
:
settings.mk
.INCLUDE
:
target.mk
.INCLUDE
:
installationtest.mk
ALLTAR
:
UNOAPI_TEST
ALLTAR
:
javatest
UNOAPI_TEST
:
+$(SOLARENV)$/bin$/checkapi
-sce
sc.sce
-xcl
knownissues.xcl
-tdoc
$(PWD)$/testdocuments
.END
sc/source/ui/app/inputwin.cxx
Dosyayı görüntüle @
8bd51f02
...
...
@@ -768,8 +768,9 @@ __EXPORT ScTextWnd::~ScTextWnd()
{
delete
pEditView
;
delete
pEditEngine
;
for
(
AccTextDataVector
::
reverse_iterator
aIt
=
maAccTextDatas
.
rbegin
(),
aEnd
=
maAccTextDatas
.
rend
();
aIt
!=
aEnd
;
++
aIt
)
(
*
aIt
)
->
Dispose
();
while
(
!
maAccTextDatas
.
empty
())
{
maAccTextDatas
.
back
()
->
Dispose
();
}
}
void
__EXPORT
ScTextWnd
::
Paint
(
const
Rectangle
&
rRec
)
...
...
sc/util/makefile.mk
Dosyayı görüntüle @
8bd51f02
...
...
@@ -139,7 +139,7 @@ LIB4FILES= \
SHL2TARGET
=
scd
$(DLLPOSTFIX)
SHL2IMPLIB
=
scdimp
SHL2VERSIONMAP
=
scd
.map
SHL2VERSIONMAP
=
$(SOLARENV)
/src/component
.map
SHL2DEF
=
$(MISC)$/$(SHL2TARGET)
.def
DEF2NAME
=
$(SHL2TARGET)
...
...
@@ -288,7 +288,7 @@ TARGET_VBA=vbaobj
SHL9TARGET
=
$(TARGET_VBA)$(DLLPOSTFIX)
.uno
SHL9IMPLIB
=
i
$(TARGET_VBA)
SHL9VERSIONMAP
=
$(
TARGET_VBA)
.map
SHL9VERSIONMAP
=
$(
SOLARENV)
/src/component
.map
SHL9DEF
=
$(MISC)$/$(SHL9TARGET)
.def
DEF9NAME
=
$(SHL9TARGET)
.IF
"$(VBA_EXTENSION)"
==
"YES"
...
...
sc/util/sc.map
deleted
100644 → 0
Dosyayı görüntüle @
0ff66a76
SC_1_0 {
global:
component_getImplementationEnvironment;
component_writeInfo;
component_getFactory;
local:
*;
};
sc/util/scd.map
deleted
100644 → 0
Dosyayı görüntüle @
0ff66a76
SC_1_0 {
global:
component_getImplementationEnvironment;
component_writeInfo;
component_getFactory;
local:
*;
};
sc/util/scfilt.map
Dosyayı görüntüle @
8bd51f02
SCFILT_1
_0 {
UDK_3_0
_0 {
global:
ScFilterCreate;
local:
...
...
sc/util/scui.map
Dosyayı görüntüle @
8bd51f02
SWUI_1
_0 {
UDK_3_0
_0 {
global:
CreateDialogFactory;
local:
...
...
sc/util/vbaobj.map
deleted
100644 → 0
Dosyayı görüntüle @
0ff66a76
OOO_1.1 {
global:
component_getImplementationEnvironment;
component_getFactory;
component_writeInfo;
local:
*;
};
scaddins/source/analysis/exports.map
deleted
100644 → 0
Dosyayı görüntüle @
0ff66a76
SC_1_0 {
global:
component_getImplementationEnvironment;
component_writeInfo;
component_getFactory;
local:
*;
};
scaddins/source/analysis/makefile.mk
Dosyayı görüntüle @
8bd51f02
...
...
@@ -109,7 +109,7 @@ SHL1STDLIBS= \
SHL1DEPN
=
makefile.mk
SHL1VERSIONMAP
=
exports
.map
SHL1VERSIONMAP
=
$(SOLARENV)
/src/component
.map
SHL1DEF
=
$(MISC)$/$(SHL1TARGET)
.def
DEF1NAME
=
$(SHL1TARGET)
...
...
scaddins/source/datefunc/exports.map
deleted
100644 → 0
Dosyayı görüntüle @
0ff66a76
SC_1_0 {
global:
component_getImplementationEnvironment;
component_writeInfo;
component_getFactory;
local:
*;
};
scaddins/source/datefunc/makefile.mk
Dosyayı görüntüle @
8bd51f02
...
...
@@ -96,7 +96,7 @@ SHL1STDLIBS= \
SHL1DEPN
=
makefile.mk
SHL1VERSIONMAP
=
exports
.map
SHL1VERSIONMAP
=
$(SOLARENV)
/src/component
.map
SHL1DEF
=
$(MISC)$/$(SHL1TARGET)
.def
DEF1NAME
=
$(SHL1TARGET)
...
...
sccomp/source/solver/exports.map
deleted
100644 → 0
Dosyayı görüntüle @
0ff66a76
SOLVER_1_0 {
global:
component_getImplementationEnvironment;
component_getFactory;
component_writeInfo;
local:
*;
};
sccomp/source/solver/makefile.mk
Dosyayı görüntüle @
8bd51f02
...
...
@@ -60,7 +60,7 @@ SHL1STDLIBS= $(COMPHELPERLIB) \
SHL1DEPN
=
makefile.mk
SHL1DEF
=
$(MISC)$/$(SHL1TARGET)
.def
SHL1VERSIONMAP
=
exports
.map
SHL1VERSIONMAP
=
$(SOLARENV)
/src/component
.map
DEF1NAME
=
$(SHL1TARGET)
# --- Resources --------------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment