mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-03-28 19:52:28 +01:00
32 lines
668 B
CMake
32 lines
668 B
CMake
include( ${PROJECT_BINARY_DIR}/TomahawkUse.cmake )
|
|
|
|
setup_qt()
|
|
|
|
include_directories( ${CMAKE_CURRENT_BINARY_DIR}/libtomahawk )
|
|
include_directories( ${CMAKE_CURRENT_LIST_DIR}/libtomahawk )
|
|
|
|
include_directories( ${CMAKE_CURRENT_BINARY_DIR} )
|
|
include_directories( ${CMAKE_CURRENT_LIST_DIR} )
|
|
|
|
# library
|
|
add_subdirectory( libtomahawk )
|
|
add_subdirectory( libtomahawk-widgets )
|
|
add_subdirectory( libtomahawk-playdarapi )
|
|
|
|
# plugins
|
|
add_subdirectory( accounts )
|
|
add_subdirectory( infoplugins )
|
|
add_subdirectory( viewpages )
|
|
|
|
|
|
# application
|
|
add_subdirectory( tomahawk )
|
|
|
|
# tools
|
|
add_subdirectory( tools )
|
|
|
|
if(WITH_CRASHREPORTER)
|
|
add_subdirectory( crashreporter )
|
|
endif()
|
|
|