forked from libyui/libyui-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPROJECTINFO.cmake
18 lines (15 loc) · 880 Bytes
/
PROJECTINFO.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
##### PROJECTINFO for CMake
SET( BASELIB "yui" ) # don't change this
##### MAKE ALL NEEDED CHANGES HERE #####
SET( SUBDIRS src examples )
SET( LIB_DEPS Boost )
SET( LIB_LINKER dl pthread )
SET( EXTRA_INCLUDES ) # set include-dir which are not picked by CMake automagically here.
SET( URL "https://github.com/libyui/" )
SET( SUMMARY "GUI-abstraction library" )
SET( DESCRIPTION "This is the user interface engine that provides the abstraction from\n" )
SET( DESCRIPTION "${DESCRIPTION}graphical user interfaces (Qt, Gtk) and text based user interfaces\n" )
SET( DESCRIPTION "${DESCRIPTION}(ncurses).\n\n" )
SET( DESCRIPTION "${DESCRIPTION}Originally developed for YaST, it can now be used independently of\n" )
SET( DESCRIPTION "${DESCRIPTION}YaST for generic (C++) applications. This package has very few\n" )
SET( DESCRIPTION "${DESCRIPTION}dependencies." )