From fba8184491e0b7ae6fab7ac01b4600d230dc4569 Mon Sep 17 00:00:00 2001 From: marsunet Date: Tue, 21 Dec 2021 17:04:22 -0800 Subject: Initial commit with window demo. --- contrib/glfw/CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 contrib/glfw/CMakeLists.txt (limited to 'contrib/glfw/CMakeLists.txt') diff --git a/contrib/glfw/CMakeLists.txt b/contrib/glfw/CMakeLists.txt new file mode 100644 index 0000000..a4e4955 --- /dev/null +++ b/contrib/glfw/CMakeLists.txt @@ -0,0 +1,11 @@ +cmake_minimum_required(VERSION 3.0) + +add_library(glfw INTERFACE) + +set(GLFW_DIR ${CMAKE_CURRENT_SOURCE_DIR}/glfw-3.3.5.bin.WIN64) + +target_include_directories(glfw INTERFACE + ${GLFW_DIR}/include) + +target_link_libraries(glfw INTERFACE + ${GLFW_DIR}/lib-vc2019/glfw3_mt.lib) -- cgit v1.2.3