~libqtelegram-team/telegram-app/reset-emblem-counter

« back to all changes in this revision

Viewing changes to scope/CMakeLists.txt

  • Committer: Michał Karnicki
  • Date: 2014-12-08 13:38:37 UTC
  • mfrom: (175.2.1 app-dev-theone)
  • Revision ID: michal.karnicki@canonical.com-20141208133837-md8h3yjbqrsn2v86
Add a scope to Telegram.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
set(UBUNTU_PROJECT_TYPE "Scope" CACHE INTERNAL "Tells QtCreator this is a Scope project") 
 
2
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -pedantic -Wall -Wextra")
 
3
 
 
4
 
 
5
set(SCOPE_LIB_TARGET_NAME ${APP_PACKAGE}_${SCOPE_NAME})
 
6
 
 
7
set(INI_INSTALLDIR "/${SCOPE_NAME}")
 
8
set(SCOPE_INSTALLDIR "/${SCOPE_NAME}")
 
9
set(GETTEXT_DOMAIN ${SCOPE_NAME})
 
10
 
 
11
 
 
12
include(FindPkgConfig)
 
13
pkg_check_modules(UNITY_SCOPES libunity-scopes>=0.6.0 REQUIRED)
 
14
 
 
15
add_subdirectory(./src)
 
16
add_subdirectory(./data)
 
17
add_subdirectory(./po)
 
18
 
 
19
install(FILES "apparmor-scope.json" DESTINATION "/")
 
20