dialogs.bkl 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0" ?>
  2. <makefile>
  3. <include file="../../build/bakefiles/common_samples.bkl"/>
  4. <set var="GENERIC_DIALOGS_IN_NATIVE_BUILDS">
  5. <if cond="OUT_OF_TREE_MAKEFILES=='1'">
  6. <!-- no files that are not part of the sample in this case -->
  7. </if>
  8. <if cond="TOOLKIT=='MSW' and WXUNIV=='0' and SHARED=='0'">
  9. $(WXTOPDIR)src/generic/colrdlgg.cpp
  10. $(WXTOPDIR)src/generic/dirdlgg.cpp
  11. $(WXTOPDIR)src/generic/filedlgg.cpp
  12. $(WXTOPDIR)src/generic/fontdlgg.cpp
  13. </if>
  14. <if cond="TOOLKIT=='MAC' and WXUNIV=='0' and SHARED=='0'">
  15. $(WXTOPDIR)src/generic/colrdlgg.cpp
  16. $(WXTOPDIR)src/generic/dirdlgg.cpp
  17. $(WXTOPDIR)src/generic/filedlgg.cpp
  18. </if>
  19. <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">
  20. $(WXTOPDIR)src/generic/filedlgg.cpp
  21. </if>
  22. <if cond="TOOLKIT=='PM' and WXUNIV=='0' and SHARED=='0'">
  23. $(WXTOPDIR)src/generic/fontdlgg.cpp
  24. $(WXTOPDIR)src/generic/filedlgg.cpp
  25. </if>
  26. </set>
  27. <exe id="dialogs" template="wx_sample" template_append="wx_append">
  28. <sources>
  29. dialogs.cpp
  30. $(GENERIC_DIALOGS_IN_NATIVE_BUILDS)
  31. </sources>
  32. <headers>dialogs.h</headers>
  33. <wx-lib>adv</wx-lib>
  34. <wx-lib>core</wx-lib>
  35. <wx-lib>base</wx-lib>
  36. </exe>
  37. <wx-data id="data">
  38. <files>tips.txt</files>
  39. </wx-data>
  40. </makefile>