CMakeLists.txt 362 B

123456789101112131415161718
  1. set(CMAKE_AUTOMOC ON)
  2. set(CMAKE_INCLUDE_CURRENT_DIR ON)
  3. set(SRCS
  4. commands.cpp
  5. qhexedit.cpp
  6. qhexedit_p.cpp
  7. xbytearray.cpp)
  8. set(HEADERS
  9. qhexedit.h
  10. qhexedit_p.h)
  11. add_library(qhexedit STATIC ${SRCS} ${HEADERS})
  12. if(USE_QT5)
  13. target_link_libraries(qhexedit Qt5::Core Qt5::Widgets)
  14. endif()