11 lines
251 B
CMake
11 lines
251 B
CMake
|
|
cmake_minimum_required(VERSION 3.15)
|
||
|
|
|
||
|
|
project(OpenGL_Integration)
|
||
|
|
|
||
|
|
set(ENGINE_ROOT_DIR ${CMAKE_SOURCE_DIR}/engine)
|
||
|
|
|
||
|
|
find_package(Python3 REQUIRED)
|
||
|
|
|
||
|
|
enable_testing()
|
||
|
|
|
||
|
|
message(STATUS "OpenGL integration tests placeholder - to be implemented in Phase 5")
|