mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 10:52:49 +00:00
16 lines
321 B
CMake
16 lines
321 B
CMake
# the core library
|
|
add_subdirectory( core )
|
|
# the ui library
|
|
add_subdirectory( ui )
|
|
# optional modules
|
|
add_subdirectory( modules )
|
|
# commandline-prog to run scripts
|
|
add_subdirectory( console )
|
|
|
|
# unittests and such stuff
|
|
if(ENABLE_TESTING)
|
|
add_subdirectory( test )
|
|
endif()
|
|
|
|
# QtScript backend
|
|
add_subdirectory( qts )
|