[client] project restructure part 1/2

This commit is contained in:
Geoffrey McRae
2019-03-28 11:02:36 +11:00
parent 7cbaf8b5be
commit db398d41a0
39 changed files with 164 additions and 53 deletions

View File

@@ -0,0 +1,22 @@
cmake_minimum_required(VERSION 3.6)
project(renderer_opengl LANGUAGES C)
find_package(PkgConfig)
pkg_check_modules(RENDERER_OPENGL_PKGCONFIG REQUIRED
gl
glu
)
add_library(renderer_opengl STATIC
opengl.c
)
target_link_libraries(renderer_opengl
${RENDERER_OPENGL_PKGCONFIG_LIBRARIES}
)
target_include_directories(renderer_opengl
PRIVATE
src
${RENDERER_OPENGL_PKGCONFIG_INCLUDE_DIRS}
)

File diff suppressed because it is too large Load Diff