Files
wgpu/examples/remote/CMakeLists.txt
2019-07-27 14:26:06 +02:00

16 lines
287 B
CMake

cmake_minimum_required(VERSION 3.11b)
project(remote)
set(TARGET_NAME remote)
add_executable(remote main.c)
find_package(glfw3)
find_library(WGPU_LIBRARY wgpu_remote
HINTS "${CMAKE_CURRENT_SOURCE_DIR}/../../target/debug"
)
target_link_libraries(${TARGET_NAME} ${WGPU_LIBRARY})