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.
15 lines
445 B
CMake
15 lines
445 B
CMake
# Set sources
|
|
set(SRC main.cpp)
|
|
link_libraries(${MEEGOTOUCH_LIBRARIES})
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC -fvisibility=hidden -fvisibility-inlines-hidden")
|
|
set(CMAKE_EXE_LINKER_FLAGS "-pie -rdynamic")
|
|
|
|
# Enable Qt-support
|
|
include(${QT_USE_FILE})
|
|
add_executable(fala_testapp ${SRC})
|
|
|
|
# Install
|
|
install(PROGRAMS fala_testapp DESTINATION /usr/bin/)
|
|
install(FILES com.nokia.fala_testapp.service DESTINATION /usr/share/dbus-1/services)
|