Changeset 19312
- Timestamp:
- 10/27/18 19:51:31 (6 years ago)
- Location:
- trunk/FACT++
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/CMakeLists.txt
r19303 r19312 205 205 SET(CMAKE_CXX_STANDARD 11) 206 206 207 ADD_DEFINITIONS(-D__CMAKE__) 208 207 209 SET(CMAKE_CXX_FLAGS 208 210 "${CMAKE_CXX_FLAGS} -Wall -Winit-self -Wpointer-arith \ … … 210 212 -Wnon-virtual-dtor -Wshadow -Wno-unknown-pragmas") # -Wextra 211 213 212 # FIXME: Move that to config.h.in213 214 # -D__MARS__ 214 215 SET(CMAKE_CXX_FLAGS … … 726 727 # ******************************************************** 727 728 728 INCLUDE_DIRECTORIES(/usr/include/qwt-qt4 gui gui/RawEventsViewer) 729 FILE(WRITE ${CMAKE_BINARY_DIR}/design.h "#include \"ui_design.h\"") 730 FILE(WRITE ${CMAKE_BINARY_DIR}/viewer.h "#include \"ui_viewer.h\"") 729 INCLUDE_DIRECTORIES(${QWT_INCLUDE_DIR}/qwt-qt4 gui gui/RawEventsViewer) 731 730 732 731 # -------------------------------------------------------- … … 739 738 gui/QCameraWidget.h 740 739 gui/Q3DCameraWidget.h) 740 741 SET(_moc ${CMAKE_BINARY_DIR}/${_current_MOC}) 741 742 742 743 ADD_EXECUTABLE(viewer -
trunk/FACT++/gui/MainWindow.h
r17211 r19312 2 2 #define FACT_MainWindow 3 3 4 #ifdef __CMAKE__ 5 #include "ui_design.h" 6 #else 4 7 #include "design.h" 8 #endif 5 9 6 10 #include <QMainWindow> -
trunk/FACT++/gui/RawEventsViewer/RawEventsViewer.cc
r19300 r19312 13 13 14 14 #include "RawEventsViewer.h" 15 #include "viewer.h"16 15 17 16 #include <QFileDialog> -
trunk/FACT++/gui/RawEventsViewer/RawEventsViewer.h
r18986 r19312 198 198 * Class UIConnector. used to connect the interface to the raw data displayer 199 199 *************************************************/ 200 #ifndef __CMAKE__ 200 201 #include "viewer.h" 202 #else 203 #include "ui_viewer.h" 204 #endif 201 205 202 206 class Configuration;
Note:
See TracChangeset
for help on using the changeset viewer.