~vorlon/platform-api/lp.1465958

« back to all changes in this revision

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

  • Committer: CI bot
  • Author(s): Alberto Aguirre
  • Date: 2014-11-26 17:40:42 UTC
  • mfrom: (283.2.2 stub-mirserver)
  • Revision ID: ps-jenkins@lists.canonical.com-20141126174042-t4fzmnag9rujcppz
Stub out mirserver backend 
Approved by: Gerry Boland, PS Jenkins bot

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
set(SOURCES
2
2
  ubuntu_application_api_mirserver.cpp
3
 
  application_instance_mirserver.cpp
4
 
  window_properties_mirserver.cpp
5
 
  window_mirserver.cpp
6
3
)
7
4
 
8
5
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --std=c++11 -fPIC")
9
6
 
10
7
include_directories(
11
8
    ${CMAKE_BINARY_DIR}/include
12
 
    ${MIRSERVER_INCLUDE_DIRS}
13
9
)
14
10
 
15
11
add_library(
16
 
        ubuntu_application_api_mirserver STATIC
17
 
        ${SOURCES}
 
12
    ubuntu_application_api_mirserver STATIC
 
13
    ${SOURCES}
18
14
)
19
15
 
20
16
target_link_libraries(
21
 
        ubuntu_application_api_mirserver
22
 
 
23
 
    ${MIRSERVER_LDFLAGS} ${MIRSERVER_LIBRARIES}
 
17
    ubuntu_application_api_mirserver
24
18
)