mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-02 16:49:41 +02:00
It's still has some work, but it successfully builds on all 3 main platforms. Some of the outstanding items include: Install target testing (mostly important for Linux) CMakeList clean up and comments Debug and Release build verification Audit of compile/link options Need a Mac signed and notarized build (and probably more)
35 lines
1.1 KiB
C
35 lines
1.1 KiB
C
/* WARNING! All changes made to this file will be lost! */
|
|
|
|
#ifndef W_SUIL_CONFIG_H_WAF
|
|
#define W_SUIL_CONFIG_H_WAF
|
|
|
|
#define SUIL_VERSION "@SUIL_VERSION@"
|
|
#cmakedefine HAVE_LV2 1
|
|
#cmakedefine HAVE_X11 1
|
|
#cmakedefine HAVE_GTK2 1
|
|
#cmakedefine HAVE_GTK2_X11 1
|
|
#cmakedefine HAVE_GTK3 1
|
|
#cmakedefine HAVE_GTK3_X11 1
|
|
#cmakedefine HAVE_QT4 1
|
|
#cmakedefine HAVE_QT5 1
|
|
#cmakedefine HAVE_QMACCOCOAVIEWCONTAINER 1
|
|
#cmakedefine HAVE_LIBDL 1
|
|
#define SUIL_MODULE_DIR "@SUIL_MODULE_DIR@"
|
|
#define SUIL_DIR_SEP "@SUIL_DIR_SEP@"
|
|
#define SUIL_GTK2_LIB_NAME "@SUIL_GTK2_LIB_NAME@"
|
|
#define SUIL_GTK3_LIB_NAME "@SUIL_GTK3_LIB_NAME@"
|
|
#define SUIL_MODULE_PREFIX "@SUIL_MODULE_PREFIX@"
|
|
#define SUIL_MODULE_EXT "@SUIL_MODULE_EXT@"
|
|
#cmakedefine SUIL_WITH_QT4_IN_GTK2 1
|
|
#cmakedefine SUIL_WITH_GTK2_IN_QT4 1
|
|
#cmakedefine SUIL_WITH_GTK2_IN_QT5 1
|
|
#cmakedefine SUIL_WITH_QT5_IN_GTK2 1
|
|
#cmakedefine SUIL_WITH_X11_IN_GTK2 1
|
|
#cmakedefine SUIL_WITH_X11_IN_GTK3 1
|
|
#cmakedefine SUIL_WITH_QT5_IN_GTK3 1
|
|
#cmakedefine SUIL_WITH_X11_IN_QT4 1
|
|
#cmakedefine SUIL_WITH_X11_IN_QT5 1
|
|
#cmakedefine SUIL_WITH_X11 1
|
|
|
|
#endif /* W_SUIL_CONFIG_H_WAF */
|