From 0166680572655a8e2bfc92ab87417808b4d5b28c Mon Sep 17 00:00:00 2001 From: Angelo Theodorou Date: Thu, 18 Feb 2016 17:35:55 +0000 Subject: [PATCH] Fix CMake project name The CMake project name is set to be the same as the name of the first example. I suggest it gets changed to the name of the Visual Studio solution included in the repository. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 18baa2df..f89c4631 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 2.8 FATAL_ERROR) cmake_policy(VERSION 2.8) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake") -set(NAME bloom) +set(NAME vulkanExamples) project(${NAME})