17 lines
382 B
CMake
17 lines
382 B
CMake
# CMakeList.txt : CMake project for Mandelbrot, include source and define
|
|
# project specific logic here.
|
|
#
|
|
cmake_minimum_required (VERSION 3.8)
|
|
|
|
# Add source to this project's executable.
|
|
add_executable (Mandelbrot "main.cpp" "Window.cpp" "Application.cpp" "Canvas.cpp")
|
|
|
|
target_include_directories(Mandelbrot PRIVATE
|
|
glfw
|
|
glad
|
|
)
|
|
|
|
target_link_libraries(Mandelbrot
|
|
glfw
|
|
glad
|
|
) |