CMakeLists.txt 310 B

12345678910111213
  1. set(SRCS
  2. commands.cpp
  3. qhexedit.cpp
  4. qhexedit_p.cpp
  5. xbytearray.cpp)
  6. qt4_wrap_cpp(MOC_SRCS
  7. qhexedit.h
  8. qhexedit_p.h)
  9. include_directories(${CMAKE_CURRENT_BINARY_DIR})
  10. add_library(qhexedit STATIC ${SRCS} ${MOC_SRCS})