CMakeLists.txt 943 B

12345678910111213141516171819202122232425262728293031323334353637
  1. cmake_minimum_required (VERSION 2.6)
  2. project (TREMOR)
  3. set(TREMOR_SRC Tremor)
  4. file(GLOB SRC
  5. ${TREMOR_SRC}/asm_arm.h
  6. ${TREMOR_SRC}/backends.h
  7. ${TREMOR_SRC}/block.c
  8. ${TREMOR_SRC}/block.h
  9. ${TREMOR_SRC}/codebook.c
  10. ${TREMOR_SRC}/codebook.h
  11. ${TREMOR_SRC}/codec_internal.h
  12. ${TREMOR_SRC}/config_types.h
  13. ${TREMOR_SRC}/floor0.c
  14. ${TREMOR_SRC}/floor1.c
  15. ${TREMOR_SRC}/info.c
  16. ${TREMOR_SRC}/ivorbiscodec.h
  17. ${TREMOR_SRC}/ivorbisfile.h
  18. ${TREMOR_SRC}/lsp_lookup.h
  19. ${TREMOR_SRC}/mapping0.c
  20. ${TREMOR_SRC}/mdct.c
  21. ${TREMOR_SRC}/mdct.h
  22. ${TREMOR_SRC}/mdct_lookup.h
  23. ${TREMOR_SRC}/misc.h
  24. ${TREMOR_SRC}/os.h
  25. ${TREMOR_SRC}/registry.c
  26. ${TREMOR_SRC}/registry.h
  27. ${TREMOR_SRC}/res012.c
  28. ${TREMOR_SRC}/sharedbook.c
  29. ${TREMOR_SRC}/synthesis.c
  30. ${TREMOR_SRC}/vorbisfile.c
  31. ${TREMOR_SRC}/window.c
  32. ${TREMOR_SRC}/window.h
  33. ${TREMOR_SRC}/window_lookup.h)
  34. include_directories(../libogg/include/)
  35. add_library(tremor STATIC ${SRC})