You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
668 B
29 lines
668 B
/* Common configuration file for ng-spice and nutmeg */
|
|
|
|
#include <config.h>
|
|
|
|
#include "conf.h"
|
|
|
|
char Spice_Version[] = VERSION;
|
|
char Spice_Notice[] = "Please submit bug-reports to: ngspice-devel@lists.sourceforge.net";
|
|
char Spice_Build_Date[] = NGSPICEBUILDDATE;
|
|
/*
|
|
char *Spice_Exec_Dir = "/spice_win/bin";
|
|
char *Spice_Lib_Dir = "/spice_win/lib";
|
|
*/
|
|
char *Spice_Exec_Dir = NGSPICEBINDIR;
|
|
char *Spice_Lib_Dir = NGSPICEDATADIR;
|
|
|
|
#ifdef __MINGW32__
|
|
char *Def_Editor = "notepad.exe";
|
|
int AsciiRawFile = 1;
|
|
#else
|
|
char *Def_Editor = "vi";
|
|
int AsciiRawFile = 0;
|
|
#endif
|
|
|
|
|
|
char *Bug_Addr = "ngspice-devel@lists.sourceforge.net";
|
|
char *Spice_Host = "";
|
|
char *Spiced_Log = "";
|
|
|