Advertisement
Guest User

Untitled

a guest
May 7th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 0.34 KB | None | 0 0
  1. # Tell CMake to create the CCDTestSystem executable
  2. add_executable(${PROJECT_NAME}
  3.   ${SOURCE_FILE}
  4.   mainwindow.ui
  5.   ${RESOURCE_FILE}
  6. )
  7.  
  8. # Add the Qt5 Widgets for linking
  9. target_link_libraries(${PROJECT_NAME} Qt5::Widgets CCDSDK CCDTestSDK)
  10. qt5_use_modules(${PROJECT_NAME} Widgets)
  11.  
  12. add_subdirectory(CCDSDK2)
  13. add_subdirectory(CCDTestSDK)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement