summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Null/CMakeLists.txt
blob: e8ad21bbe8a59cea4cf3bf33d202e035b4387280 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
add_library(videonull
  NullBackend.cpp
  NullBoundingBox.h
  NullGfx.cpp
  NullGfx.h
  NullTexture.cpp
  NullTexture.h
  NullVertexManager.cpp
  NullVertexManager.h
  PerfQuery.h
  TextureCache.h
  VideoBackend.h
)

target_link_libraries(videonull
PUBLIC
  common
  videocommon
)

if(MSVC)
  # Add precompiled header
  target_link_libraries(videonull PRIVATE use_pch)
endif()