Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. Basic instructions for compiling:
  2.  
  3. cd oxygen-gtk
  4. mkdir build
  5. cd build
  6. cmake ../
  7. make -j2
  8. sudo make install
  9.  
  10. Notes:
  11.  
  12. 1/ using cmake alone (with no argument) should usually work (that is: select the right path for installing the theme)
  13. If one wants to customize this path, on can manually set the CMAKE_INSTALL_PREFIX flag when running CMake.
  14. The default is equivalent to:
  15.  
  16. cmake -DCMAKE_INSTALL_PREFIX=`pkg-config --variable=prefix gtk+-2.0` ../
  17.  
  18. 2/ on 64 bits machine an extra flag is needed at the CMake stage:
  19.  
  20. cmake -DLIB_SUFFIX=64 ../
  21.  
  22. 3/ make -jX uses X parallel jobs so that compilation would speed up on SMP machines with X cores/CPUs/threads
  23.  
  24. 4/ There are some build settings available in /CMakeLists.txt:
  25.  
  26. * OXYGEN_DEBUG:
  27. set this to 1 to enable a large amount of debug information to be printed to terminal
  28.  
  29. * OXYGEN_ICON_HACK:
  30. set this to 0 to disable oxygen-gtk from forcing KDE icons for GTK apps (regardless of DE)
  31.  
  32. * OXYGEN_FORCE_KDE_ICONS_AND_FONTS:
  33. set this to 0 to disable forcing KDE icons and fonts (and use the ones set in GTK) - makes sense only when
  34. KDE is not running. Doesn't change anything when KDE is running.
  35.  
  36. * ENABLE_COMBOBOX_LIST_RESIZE:
  37. set this to 0 to disable combobox list resizing (see README for more detail)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement