~vicamo/platform-api/remove-system-lib-prefix-from-lib-path-2

« back to all changes in this revision

Viewing changes to src/ubuntu/application/common/mirserver/CMakeLists.txt

  • Committer: CI Train Bot
  • Author(s): Alberto Aguirre
  • Date: 2015-07-06 17:53:00 UTC
  • mfrom: (300.2.3 remove-mirserver)
  • Revision ID: ci-train-bot@canonical.com-20150706175300-zty9yt763vxe8k05
Remove the unused mirserver component
Approved by: PS Jenkins bot, Robert Carr

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
set(SOURCES
2
 
  ubuntu_application_api_mirserver.cpp
3
 
)
4
 
 
5
 
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --std=c++11 -fPIC")
6
 
 
7
 
include_directories(
8
 
    ${CMAKE_BINARY_DIR}/include
9
 
)
10
 
 
11
 
add_library(
12
 
    ubuntu_application_api_mirserver STATIC
13
 
    ${SOURCES}
14
 
)
15
 
 
16
 
target_link_libraries(
17
 
    ubuntu_application_api_mirserver
18
 
)