CMakeLists.txt 283 B

123456789101112131415161718192021222324252627
  1. set(INC
  2. ..
  3. )
  4. set(SRC
  5. node.cpp
  6. node_type.cpp
  7. node_xml.cpp
  8. )
  9. set(SRC_HEADERS
  10. node.h
  11. node_enum.h
  12. node_type.h
  13. node_xml.h
  14. )
  15. set(LIB
  16. )
  17. include_directories(${INC})
  18. include_directories(SYSTEM ${INC_SYS})
  19. cycles_add_library(cycles_graph "${LIB}" ${SRC} ${SRC_HEADERS})