Skip to content
Snippets Groups Projects
Commit 19e9dfac authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

pretty print build options
parent 9a9feb5a
No related branches found
No related tags found
No related merge requests found
// $Id: CommandLine.cpp,v 1.14 2003-03-02 18:50:14 geuzaine Exp $ // $Id: CommandLine.cpp,v 1.15 2003-03-02 18:51:49 geuzaine Exp $
// //
// Copyright (C) 1997 - 2003 C. Geuzaine, J.-F. Remacle // Copyright (C) 1997 - 2003 C. Geuzaine, J.-F. Remacle
// //
...@@ -118,13 +118,13 @@ char *Get_BuildOptions(void) ...@@ -118,13 +118,13 @@ char *Get_BuildOptions(void)
if(first){ if(first){
#if defined(HAVE_GSL) #if defined(HAVE_GSL)
strcat(opt, "GSL "); strcat(opt, "HAVE_GSL ");
#endif #endif
#if defined(HAVE_TRIANGLE) #if defined(HAVE_TRIANGLE)
strcat(opt, "TRIANGLE "); strcat(opt, "HAVE_TRIANGLE ");
#endif #endif
#if defined(HAVE_LIBJPEG) #if defined(HAVE_LIBJPEG)
strcat(opt, "JPEG "); strcat(opt, "HAVE_LIBJPEG ");
#endif #endif
first = 0; first = 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment