5 lines
168 B
CMake
5 lines
168 B
CMake
cmake_minimum_required(VERSION 3.26.0)
|
|
project(gtest_Graphics VERSION 0.1.0 LANGUAGES C CXX)
|
|
|
|
add_executable(ErrorTest main.cpp)
|
|
target_link_libraries(ErrorTest NBCore) |