mirror of https://github.com/cutefishos/appmotor
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
380 B
CMake
10 lines
380 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
find_package(Qt4 4.7.0 REQUIRED)
|
|
include(${QT_USE_FILE})
|
|
include(FindPkgConfig)
|
|
pkg_check_modules(QDECLARATIVE_BOOSTABLE REQUIRED qdeclarative-boostable)
|
|
add_definitions(${QDECLARATIVE_BOOSTABLE_CFLAGS})
|
|
link_libraries(${QDECLARATIVE_BOOSTABLE_LDFLAGS} ${QT_QTCORE_LIBRARY} ${QT_QTDECLARATIVE_LIBRARY})
|
|
add_executable(qml-helloworld main.cpp)
|
|
|