gles-compatibility-layer/test/CMakeLists.txt

14 lines
404 B
CMake
Raw Normal View History

2023-09-08 01:17:21 +00:00
cmake_minimum_required(VERSION 3.16.0)
project(gles-compatibility-layer-test)
# Build Library
add_subdirectory(.. gles-compatibility-layer)
target_compile_definitions(gles-compatibility-layer PRIVATE GLES_COMPATIBILITY_LAYER_TESTING)
# Build
add_executable(main src/main.cpp)
target_link_libraries(main gles-compatibility-layer)
2024-05-27 07:43:28 +00:00
# GLFW
find_package(glfw3 3.3 REQUIRED)
target_link_libraries(main glfw)