mirror of
https://github.com/jhasse/poly2tri.git
synced 2024-11-05 22:09:52 +01:00
16 lines
214 B
CMake
16 lines
214 B
CMake
# Dependencies
|
|
find_package(glfw3 3.3 REQUIRED)
|
|
find_package(OpenGL REQUIRED)
|
|
|
|
# Build testbed
|
|
add_executable(testbed
|
|
main.cc
|
|
)
|
|
|
|
target_link_libraries(testbed
|
|
PRIVATE
|
|
glfw
|
|
OpenGL::GL
|
|
poly2tri
|
|
)
|