config.gcc 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. # =========================================================================
  2. # This configuration file was generated by
  3. # Bakefile 0.2.9 (http://www.bakefile.org)
  4. # Beware that all changes made to this file will be overwritten next
  5. # time you run Bakefile!
  6. # =========================================================================
  7. # -------------------------------------------------------------------------
  8. # These are configurable options:
  9. # -------------------------------------------------------------------------
  10. # Compiler flags to link shared library
  11. LINK_DLL_FLAGS ?= -shared
  12. # Compiler flags to link loadable module
  13. LINK_MODULE_FLAGS ?= -shared
  14. # C compiler
  15. CC = gcc
  16. # C++ compiler
  17. CXX = g++
  18. # Standard flags for CC
  19. CFLAGS ?=
  20. # Standard flags for C++
  21. CXXFLAGS ?=
  22. # Standard preprocessor flags (common for CC and CXX)
  23. CPPFLAGS ?=
  24. # Standard linker flags
  25. LDFLAGS ?=
  26. # The C preprocessor
  27. CPP ?= $(CC) -E
  28. # What type of library to build? [0,1]
  29. SHARED ?= 0
  30. # GTK+ toolkit version [,2]
  31. TOOLKIT_VERSION ?=
  32. # Build wxUniversal instead of native port? [0,1]
  33. WXUNIV ?= 0
  34. # Compile Unicode build of wxWidgets? [0,1]
  35. UNICODE ?= 1
  36. # Use MSLU library when building Unicode version. [0,1]
  37. MSLU ?= 0
  38. # Type of compiled binaries [debug,release]
  39. BUILD ?= debug
  40. # Should debugging info be included in the executables? The default value
  41. # "default" means that debug info will be included if BUILD=debug
  42. # and not included if BUILD=release. [0,1,default]
  43. DEBUG_INFO ?= default
  44. # Value of wxDEBUG_LEVEL. The default value is the same as 1 and means that all
  45. # but expensive assert checks are enabled, use 0 to completely remove debugging
  46. # code. [0,1,default]
  47. DEBUG_FLAG ?= 1
  48. # Multiple libraries or single huge monolithic one? [0,1]
  49. MONOLITHIC ?= 0
  50. # Build GUI libraries? [0,1]
  51. USE_GUI ?= 1
  52. # Build wxHTML library (USE_GUI must be 1)? [0,1]
  53. USE_HTML ?= 1
  54. # Build wxWebView library (USE_GUI must be 1)? [0,1]
  55. USE_WEBVIEW ?= 1
  56. # Build multimedia library (USE_GUI must be 1)? [0,1]
  57. USE_MEDIA ?= 1
  58. # Build wxXRC library (USE_GUI must be 1)? [0,1]
  59. USE_XRC ?= 1
  60. # Build wxAUI library (USE_GUI must be 1)? [0,1]
  61. USE_AUI ?= 1
  62. # Build wxRibbon library (USE_GUI must be 1)? [0,1]
  63. USE_RIBBON ?= 1
  64. # Build wxPropertyGrid library (USE_GUI must be 1)? [0,1]
  65. USE_PROPGRID ?= 1
  66. # Build wxRichTextCtrl library (USE_GUI must be 1)? [0,1]
  67. USE_RICHTEXT ?= 1
  68. # Build wxStyledTextCtrl library (USE_GUI must be 1)? [0,1]
  69. USE_STC ?= 1
  70. # Build OpenGL canvas library (USE_GUI must be 1)? [0,1]
  71. USE_OPENGL ?= 1
  72. # Build quality assurance classes library (USE_GUI must be 1)? [0,1]
  73. USE_QA ?= 0
  74. # Enable exceptions in compiled code. [0,1]
  75. USE_EXCEPTIONS ?= 1
  76. # Enable run-time type information (RTTI) in compiled code. [0,1]
  77. USE_RTTI ?= 1
  78. # Enable threading in compiled code. [0,1]
  79. USE_THREADS ?= 1
  80. # Enable wxCairoContext for platforms other than Linux/GTK. [0,1]
  81. USE_CAIRO ?= 0
  82. # Is this official build by wxWidgets developers? [0,1]
  83. OFFICIAL_BUILD ?= 0
  84. # Use this to name your customized DLLs differently
  85. VENDOR ?= custom
  86. #
  87. WX_FLAVOUR ?=
  88. #
  89. WX_LIB_FLAVOUR ?=
  90. # Name of your custom configuration. This affects directory
  91. # where object files are stored as well as the location of
  92. # compiled .lib files and setup.h under the lib/ toplevel directory.
  93. CFG ?=
  94. # Compiler flags needed to compile test suite in tests directory. If you want
  95. # to run the tests, set it so that the compiler can find CppUnit headers.
  96. CPPUNIT_CFLAGS ?=
  97. # Linker flags needed to link test suite in tests directory. If you want
  98. # to run the tests, include CppUnit library here.
  99. CPPUNIT_LIBS ?=
  100. # Version of C runtime library to use. You can change this to
  101. # static if SHARED=0, but it is highly recommended to not do
  102. # it if SHARED=1 unless you know what you are doing. [dynamic,static]
  103. RUNTIME_LIBS ?= dynamic
  104. # Set the version of your Mingw installation here.
  105. # "3" ...... this is for Mingw 2.0 or newer (comes with gcc3)
  106. # "2.95" ... for Mingw 1.1 or any of the older versions [3,2.95]
  107. GCC_VERSION ?= 3
  108. # Windows resource compiler to use, possibly including extra options.
  109. # For example, add "-F pe-i386" here if using 64 bit windres for 32 bit build.
  110. WINDRES ?= windres --use-temp-file