rusty-nes/renderer/CMakeLists.txt

13 lines
182 B
CMake
Raw Normal View History

2022-08-31 16:47:44 +00:00
project("rusty-nes")
add_subdirectory(vendor)
add_library(renderer STATIC
context.c
)
target_link_libraries(renderer PRIVATE
glad
)
install(TARGETS renderer glad DESTINATION .)