CMakeLists.txt 344 B

1234567891011121314151617181920212223242526272829303132
  1. set(INC
  2. ..
  3. )
  4. set(INC_SYS
  5. )
  6. set(SRC
  7. subd_dice.cpp
  8. subd_patch.cpp
  9. subd_split.cpp
  10. subd_patch_table.cpp
  11. )
  12. set(SRC_HEADERS
  13. subd_dice.h
  14. subd_patch.h
  15. subd_patch_table.h
  16. subd_split.h
  17. )
  18. set(LIB
  19. )
  20. include_directories(${INC})
  21. include_directories(SYSTEM ${INC_SYS})
  22. cycles_add_library(cycles_subd "${LIB}" ${SRC} ${SRC_HEADERS})