CMakeLists.txt 450 B

123456789101112131415161718192021
  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. )
  9. set(HEADERS
  10. commands.h
  11. qhexedit.h
  12. qhexedit_p.h
  13. xbytearray.h
  14. )
  15. create_directory_groups(${SRCS} ${HEADERS})
  16. add_library(qhexedit STATIC ${SRCS} ${HEADERS})
  17. target_link_libraries(qhexedit ${CITRA_QT_LIBS})