CMakeLists.txt 756 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. add_library(videosoftware
  2. Clipper.cpp
  3. Clipper.h
  4. CopyRegion.h
  5. EfbCopy.cpp
  6. EfbCopy.h
  7. EfbInterface.cpp
  8. EfbInterface.h
  9. NativeVertexFormat.h
  10. Rasterizer.cpp
  11. Rasterizer.h
  12. SetupUnit.cpp
  13. SetupUnit.h
  14. SWmain.cpp
  15. SWBoundingBox.cpp
  16. SWBoundingBox.h
  17. SWGfx.cpp
  18. SWGfx.h
  19. SWOGLWindow.cpp
  20. SWOGLWindow.h
  21. SWRenderer.cpp
  22. SWRenderer.h
  23. SWTexture.cpp
  24. SWTexture.h
  25. SWVertexLoader.cpp
  26. SWVertexLoader.h
  27. Tev.cpp
  28. Tev.h
  29. TextureEncoder.cpp
  30. TextureEncoder.h
  31. TextureSampler.cpp
  32. TextureSampler.h
  33. TransformUnit.cpp
  34. TransformUnit.h
  35. Vec3.h
  36. VideoBackend.h
  37. )
  38. target_link_libraries(videosoftware
  39. PUBLIC
  40. common
  41. videocommon
  42. )
  43. if(MSVC)
  44. # Add precompiled header
  45. target_link_libraries(videosoftware PRIVATE use_pch)
  46. endif()