6 lines
154 B
CMake
6 lines
154 B
CMake
|
add_executable(Exponent
|
||
|
main.cc
|
||
|
)
|
||
|
|
||
|
target_link_libraries(Exponent PUBLIC glfw)
|
||
|
target_include_directories(Exponent PUBLIC ${CMAKE_SOURCE_DIR}/include)
|