Skip to content
Draft
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ if (CMAKE_GENERATOR STREQUAL "MinGW Makefiles")
set(CMAKE_C_COMPILER ${MINGW_PATH}/bin/gcc.exe)
set(CMAKE_CXX_COMPILER ${MINGW_PATH}/bin/g++.exe)
endif()
message(STATUS "using C_Compiler ${CMAKE_C_COMPILER}")
message(STATUS "using CXX_Compiler ${CMAKE_CXX_COMPILER}")

project(${NAME} VERSION 0.23.0)

Expand All @@ -25,6 +27,7 @@ if (DEFINED VULKAN_SDK_PATH)
else()
find_package(Vulkan REQUIRED) # throws error if could not find Vulkan
message(STATUS "Found Vulkan: $ENV{VULKAN_SDK}")
include_directories(${Vulkan_INCLUDE_DIRS})
endif()
if (NOT Vulkan_FOUND)
message(FATAL_ERROR "Could not find Vulkan library!")
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ A video tutorial series introducing computer graphics for [Vulkan®](https://www
- [Download and install MacOS Vulkan sdk](https://vulkan.lunarg.com/)
- [Download and install Homebrew](https://brew.sh/)

- If desired add `source /path/to/vulkan/setup-env.sh` to your shell configuration
- Then in a terminal window

```
Expand All @@ -53,6 +54,7 @@ A video tutorial series introducing computer graphics for [Vulkan®](https://www
```

- To Build

```
cd littleVulkanEngine
./unixBuild.sh
Expand Down Expand Up @@ -135,7 +137,7 @@ In this tutorial we add specular lighting to our simple fragment shader.

#### [27 - Alpha Blending and Transparency](https://github.com/blurrypiano/littleVulkanEngine/tree/tut27)

In this tutorial we add a limited blending capability to our point light system, allowing them to be rendered with a nicer appearance.
In this tutorial we add a limited blending capability to our point light system, allowing them to be rendered with a nicer appearance.

([Video](https://youtu.be/uZqxj6tLDY4))

Expand Down
Loading