config.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*=========================================================================
  2. Program: WXDialog - wxWidgets X-platform GUI Front-End for CMake
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Author: Jorgen Bodde
  8. Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
  9. See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
  10. This software is distributed WITHOUT ANY WARRANTY; without even
  11. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  12. PURPOSE. See the above copyright notices for more information.
  13. =========================================================================*/
  14. #ifndef __CMAKE_CONFIG_H__
  15. #define __CMAKE_CONFIG_H__
  16. #define CM_LASTPROJECT_PATH "LastProjectPath" // last project path for CMakeLists.txt in edit box
  17. #define CM_LASTBUILD_PATH "LastBuildPath" // last build path for cache in edit box
  18. #define CM_MAX_RECENT_PATHS 5 // max amount most recent used paths in menu
  19. #define CM_MAX_SEARCH_QUERIES 10 // max amount of entries in search query window
  20. #define CM_RECENT_BUILD_PATH "LastRecentPath" // will be enumerated like LastRecentPath0 LastRecentPath1 etc
  21. #define CM_SEARCH_QUERY "SearchQuery" // will be enumerated like SearchQuery0 SearchQuery1 etc
  22. #define CM_XSIZE "CMakeXSize" // x size of window
  23. #define CM_YSIZE "CMakeYSize" // y size of window
  24. #define CM_XPOS "CMakeXPos" // x pos of window
  25. #define CM_YPOS "CMakeYPos" // y pos of window
  26. #define CM_SPLITTERPOS "CMakeSplitterPos" // position of splitter window
  27. #define CM_CLOSEAFTERGEN "CMakeCloseAfterGenerate" // close CMake after succesful generation (old behaviour)
  28. #define CM_CLOSEAFTERGEN_DEF false // inherit default false when not present
  29. #define CM_RECENT_BUILD_ITEM 10000 // ID of menu item for recent builds
  30. #define CMAKEGUI_MAJORVER 0 // major build
  31. #define CMAKEGUI_MINORVER 9 // minor build
  32. #define CMAKEGUI_ADDVER "b" // postfix (beta, alpha, none)
  33. #endif