diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-02-13 04:49:03 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-02-13 04:49:03 +0000 |
| commit | 66b3b5f4ff87e705b6bc65df751c91799d1f402a (patch) | |
| tree | 6302d270799933f60334417f306bad7311aeddb5 /External | |
| parent | Minor updates on iOS platform (diff) | |
| download | DiligentCore-66b3b5f4ff87e705b6bc65df751c91799d1f402a.tar.gz DiligentCore-66b3b5f4ff87e705b6bc65df751c91799d1f402a.zip | |
Fixed formatting of cmake files + couple of minor updates
Diffstat (limited to 'External')
| -rw-r--r-- | External/glew/CMakeLists.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/External/glew/CMakeLists.txt b/External/glew/CMakeLists.txt index 890e6f05..dc8eac5c 100644 --- a/External/glew/CMakeLists.txt +++ b/External/glew/CMakeLists.txt @@ -3,12 +3,12 @@ cmake_minimum_required (VERSION 3.3) project(glew-static) set(SOURCE - src/glew.c + src/glew.c ) set(INCLUDE - include/GL/glew.h - include/GL/wglew.h + include/GL/glew.h + include/GL/wglew.h ) add_library(glew-static STATIC ${SOURCE} ${INCLUDE}) @@ -16,24 +16,24 @@ set_common_target_properties(glew-static) target_compile_definitions(glew-static PUBLIC - GLEW_STATIC - GLEW_NO_GLU + GLEW_STATIC + GLEW_NO_GLU ) target_include_directories(glew-static PUBLIC - include + include ) target_link_libraries(glew-static PRIVATE BuildSettings) if(MSVC) - target_compile_options(glew-static PRIVATE /wd4456) + target_compile_options(glew-static PRIVATE /wd4456) endif() source_group("src" FILES ${SOURCE}) source_group("include" FILES ${INCLUDE}) set_target_properties(glew-static PROPERTIES - FOLDER Core/External + FOLDER Core/External ) |
