mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-06 18:26:22 +03:00
19 lines
1.4 KiB
Plaintext
Executable File
19 lines
1.4 KiB
Plaintext
Executable File
if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
|
|
if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
|
|
|
|
if (!($?CCINC)) setenv CCINC "."
|
|
|
|
if (!($?STLPortHome)) then
|
|
setenv STLPortInclude "."
|
|
else
|
|
if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
|
|
endif
|
|
|
|
if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleNativePaint)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleNativePaint
|
|
if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
|
|
if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
|
|
|
|
|
|
${CCHOME} ${CCFLAGS} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -I${STLPortInclude} -I${CCINC} -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleNativePaint/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleNativePaint/CASCADEView2d.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleNativePaint/CASCADEView2d.o
|
|
${CCHOME} ${CCFLAGS} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -I${STLPortInclude} -I${CCINC} -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleNativePaint/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleNativePaint/CASCADEView3d.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleNativePaint/CASCADEView3d.o
|