CMakeLists.txt 377 B

12345678910111213141516171819202122232425
  1. add_library(videonull
  2. NullBackend.cpp
  3. NullBoundingBox.h
  4. NullGfx.cpp
  5. NullGfx.h
  6. NullTexture.cpp
  7. NullTexture.h
  8. NullVertexManager.cpp
  9. NullVertexManager.h
  10. PerfQuery.h
  11. TextureCache.h
  12. VideoBackend.h
  13. )
  14. target_link_libraries(videonull
  15. PUBLIC
  16. common
  17. videocommon
  18. )
  19. if(MSVC)
  20. # Add precompiled header
  21. target_link_libraries(videonull PRIVATE use_pch)
  22. endif()