~osomon/webbrowser-app/selection-zoomed

« back to all changes in this revision

Viewing changes to src/CMakeLists.txt

  • Committer: Olivier Tilloy
  • Date: 2013-01-14 10:50:30 UTC
  • Revision ID: olivier.tilloy@canonical.com-20130114105030-1bqbhtyrw48jo7dt
Replace qmake with cmake, for more advanced features.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
project(kalossi-browser)
 
2
 
 
3
set(KALOSSI_BROWSER kalossi-browser)
 
4
 
 
5
set(KALOSSI_SRC
 
6
    kalossi-browser.cpp
 
7
)
 
8
 
 
9
add_executable(${KALOSSI_BROWSER}
 
10
    ${KALOSSI_SRC}
 
11
)
 
12
 
 
13
include_directories(
 
14
    ${CMAKE_BINARY_DIR}
 
15
)
 
16
 
 
17
qt5_use_modules(${KALOSSI_BROWSER} Core Widgets Quick)
 
18
 
 
19
install(TARGETS ${KALOSSI_BROWSER}
 
20
        RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})