~qqworini/aesydict/online-improve

« back to all changes in this revision

Viewing changes to src/CMakeLists.txt

  • Committer: Joey Chan
  • Date: 2015-03-14 11:42:38 UTC
  • Revision ID: qqworini@gmail.com-20150314114238-xx0ivhxhwt7hcotc
add full cmake support

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
project(aesydict_src)
 
2
 
 
3
set(
 
4
    aesydict_SRCS
 
5
    main.cpp
 
6
    )
 
7
 
 
8
add_executable(${EXEC}
 
9
    ${aesydict_SRCS}
 
10
    )
 
11
 
 
12
qt5_use_modules(${EXEC} Core Qml Quick  Gui)
 
13
 
 
14
install(TARGETS ${EXEC} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})