cleaning up CMake file and some comments

This commit is contained in:
jriegel 2014-08-18 22:42:23 +02:00
parent b253a14818
commit 0e53a593db
2 changed files with 17 additions and 14 deletions

View File

@ -287,24 +287,12 @@ if (MSVC)
# )
#ENDIF(CMAKE_SIZEOF_VOID_P EQUAL 8)
set(MEFISTO2_SMESH_source_files
set(MEFISTO2_source_files
src/MEFISTO2/aptrte.cpp
src/MEFISTO2/trte.c
src/MEFISTO2/f2clib_part.c
inc/Rn.h
inc/aptrte.h
)
FILE(GLOB MEFISTO2_f2clib_source_files
#src/MEFISTO2/f2clib/*.c
#src/MEFISTO2/f2clib/*.h
)
set(MEFISTO2_source_files
${MEFISTO2_SMESH_source_files}
${MEFISTO2_f2clib_source_files}
)
SOURCE_GROUP("f2cLib" FILES ${MEFISTO2_f2clib_source_files})
else(MSVC)
FILE(GLOB MEFISTO2_source_files

View File

@ -10,6 +10,21 @@
http://www.netlib.org/f2c/libf2c.zip
*/
/*
Since Mefisto is using very little real fortran API calls only the definition
portion of the f2c header is used and the fortran write() calls are commented out:
//io___187.ciunit = unites_2.imprim;
//s_wsle(&io___187);
//do_lio(&c__9, &c__1, "pas de triangle d'abscisse minimale", (ftnlen)
// 35);
//e_wsle();
This calls print out error information and are not needed in FreeCAD....
JR 2014
*/
// start F2c.h content
typedef long int integer;
typedef unsigned long int uinteger;