Skip to content

Commit

Permalink
cleaning up CMake file and some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jriegel committed Aug 18, 2014
1 parent b253a14 commit 0e53a59
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 14 deletions.
16 changes: 2 additions & 14 deletions src/3rdParty/salomesmesh/CMakeLists.txt
Expand Up @@ -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
Expand Down
15 changes: 15 additions & 0 deletions src/3rdParty/salomesmesh/src/MEFISTO2/trte.c
Expand Up @@ -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;
Expand Down

0 comments on commit 0e53a59

Please sign in to comment.