~george-edison55/twistload/trunk

« back to all changes in this revision

Viewing changes to CMakeLists.txt

  • Committer: Nathan Osman
  • Date: 2014-05-18 22:39:42 UTC
  • Revision ID: git-v1:599a80382f9fa4338d2c6eec7027af5fc594c3c8
Moved source files and UI files to separate directories.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
set(CMAKE_INCLUDE_CURRENT_DIR ON)
11
11
 
12
12
set(SRC
13
 
    main.cpp
14
 
    mainwindow.cpp)
 
13
    src/main.cpp
 
14
    src/mainwindow.cpp)
15
15
 
16
16
qt5_wrap_cpp(MOC
17
 
    mainwindow.h)
 
17
    src/mainwindow.h)
18
18
 
19
19
qt5_wrap_ui(UI
20
 
    mainwindow.ui)
 
20
    ui/mainwindow.ui)
21
21
 
22
22
add_executable(twistload WIN32
23
23
    ${SRC} ${MOC} ${UI})