CMakeLists.txt 299 B

123456789101112
  1. # Copyright (C) Microsoft Corporation. All rights reserved.
  2. # This file is distributed under the University of Illinois Open Source License. See LICENSE.TXT for details.
  3. add_llvm_tool(dxexp
  4. dxexp.cpp
  5. )
  6. find_package(D3D12 REQUIRED)
  7. target_link_libraries(dxexp
  8. ${D3D12_LIBRARIES}
  9. dxguid.lib
  10. )