Advertisement
Guest User

Untitled

a guest
Jun 2nd, 2022
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. noel@librebuild2:~/codelite/build-release$
  2. noel@librebuild2:~/codelite/build-release$
  3. noel@librebuild2:~/codelite/build-release$
  4. noel@librebuild2:~/codelite/build-release$ more /home/noel/wxWidgets/build/wx-config
  5. #!/bin/sh
  6. #
  7. # Name: wx-config-inplace
  8. # Purpose: wx configuration in tree search and query tool
  9. # Author: Ron <ron@debian.org>
  10. # Modified by: VZ on 2005-09-20 to make it work with Bourne shell
  11. # Created: 14/9/2004
  12. # Copyright: (c) 2004 Ron <ron@debian.org>
  13. # Licence: wxWindows licence
  14. ############################################################################
  15.  
  16. # Not much to do here. Just initialise prefix to point things into the
  17. # local tree by default and then source the real wx-config if it all still
  18. # looks sane.
  19.  
  20. check_dirname()
  21. {
  22. if [ ! -d "$1" ]; then
  23. printf "\n *** Error: Directory '$1'\n" 1>&2
  24. printf " no longer exists.\n\n" 1>&2
  25. exit 1
  26. fi
  27. ( cd $1 && pwd )
  28. }
  29.  
  30. # set the variables which allow the real wx-config to check if we're using it
  31. # in place or after installation
  32. this_prefix=`check_dirname "/home/noel/wxWidgets/build/.."`
  33. if [ "x$this_prefix" = "x" ]; then
  34. exit 1
  35. fi
  36. this_exec_prefix=`check_dirname "/home/noel/wxWidgets/build"`
  37. if [ "x$this_exec_prefix" = "x" ]; then
  38. exit 1
  39. fi
  40.  
  41. . "$this_exec_prefix/lib/wx/config/gtk3-unicode-3.1"
  42.  
  43. noel@librebuild2:~/codelite/build-release$ cmake -DCMAKE_BUILD_TYPE=Release .. -DCOPY_WX_LIBS=1 -DWITH_WXPATH=/home/noel/wxWidgets/build/wx-config/
  44. -- BUILD_DIRECTORY is set to /home/noel/codelite/build-release
  45. -- OS name Linux
  46. -- wx-config used is: /usr/bin/wx-config
  47. -- wxWidgets version is: 3.0.5
  48. -- gtk version is: 3
  49. -- LIBSSH_LIB is set to /usr/lib/x86_64-linux-gnu/libssh.so
  50. -- PLUGINS_DIR is set to /usr/lib/x86_64-linux-gnu/codelite
  51. -- Using Native Notebook class
  52. -- Building in Release mode
  53. -- CMAKE_INSTALL_DO_STRIP is TRUE
  54. -- Executables will be written into /home/noel/codelite/build-release/bin
  55. -- Shared Objects will be written into /home/noel/codelite/build-release/lib
  56. -- Adding -DNDEBUG to definitions
  57. -- CPACK_SYSTEM_NAME ubuntu-jammy-x86_64
  58. -- OS_CODENAME is set to jammy
  59. -- ARCH 64
  60. -- ARCH_NAME x86_64
  61. -- USE_SFTP is set to 1
  62. -- Flex support is disabled
  63. -- Found libhunspell: /usr/lib/x86_64-linux-gnu/libhunspell.so, /usr/include/hunspell
  64. **** NOTICE: lldb is not available. You could try installing the lldb-3.4-dev (or equivalent) package
  65. -- CL_SRC_ROOT is set to /home/noel/codelite
  66. -- Adding Valgrind Plugin
  67. -- Building wxCrafter as codelite plugin
  68. -- Generating makefile for wxCrafter
  69. -- wxlibsdir is: /usr/lib/x86_64-linux-gnu
  70. -- will copy /usr/lib/x86_64-linux-gnu/libssh.so;/usr/lib/x86_64-linux-gnu/libssh.so.4;/usr/lib/x86_64-linux-gnu/libssh.so.4.8.7
  71. -I/usr/lib/x86_64-linux-gnu/wx/include/gtk3-unicode-3.0 -I/usr/include/wx-3.0 -D_FILE_OFFSET_BITS=64 -DWXUSINGDLL -D__WXGTK__ -pthread
  72. -- Including plugin.cmake module
  73. -- CMAKE_SOURCE_DIR is set to /home/noel/codelite
  74. -- Configuring done
  75. -- Generating done
  76. -- Build files have been written to: /home/noel/codelite/build-release
  77. noel@librebuild2:~/codelite/build-release$
  78.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement