
This has been completely broken since 2018 (commit a93283df
), and no
one noticed, so it probably wasn't useful. Instead of fixing it, just
drop the feature and a bunch of odd nonportable code.
19 lines
535 B
C
19 lines
535 B
C
#ifndef SOLVESPACE_CONFIG_H
|
|
#define SOLVESPACE_CONFIG_H
|
|
|
|
#define PACKAGE_VERSION "@solvespace_VERSION_MAJOR@.@solvespace_VERSION_MINOR@~@solvespace_GIT_HASH@"
|
|
|
|
/* Non-OS X *nix only */
|
|
#define UNIX_DATADIR "@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_DATAROOTDIR@/solvespace"
|
|
|
|
/* Do we have the si library on win32, or libspnav on *nix? */
|
|
#cmakedefine HAVE_SPACEWARE
|
|
|
|
/* What OpenGL version do we use? */
|
|
#define HAVE_OPENGL @OPENGL@
|
|
|
|
/* If we use GTK, can we use the native file chooser? */
|
|
#cmakedefine HAVE_GTK_FILECHOOSERNATIVE
|
|
|
|
#endif
|