Warning, /multimedia/amarok/supplementary_scripts/licenseChecker/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 cmake_minimum_required(VERSION 2.6)
0002 project(AmarokLicenseChecker)
0003 
0004 find_package(Qt4 REQUIRED)
0005 
0006 set(CMAKE_CXX_FLAGS "-g -Wall")
0007 
0008 include(${QT_USE_FILE})
0009 
0010 set (checker_SRCS
0011         main.cpp
0012         log.cpp
0013 )
0014 
0015 add_executable(amaroklicensechecker ${checker_SRCS})
0016 target_link_libraries(amaroklicensechecker ${QT_LIBRARIES})
0017 
0018 install(TARGETS amaroklicensechecker DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
0019