Advertisement
Guest User

CMakeLists.txt

a guest
Nov 3rd, 2013
524
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 0.23 KB | None | 0 0
  1. find_package(Qt5Widgets REQUIRED)
  2. qt5_wrap_ui(hello-world_UI ../gui/MainWindow.ui)
  3.  
  4. message(STATUS "${hello-world_UI}")
  5.  
  6. add_executable(hello-world MainWindow.cpp main.cpp ${hello-world_UI})
  7. qt5_use_modules(hello-world Widgets)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement