Change include paths and argument type on main functions to ease linux adoption (#307)

This commit is contained in:
Andreas Süßenbach
2019-03-19 15:35:08 +01:00
committed by Markus Tavenrath
parent 3f20016ba9
commit 45590a9bd7
19 changed files with 30 additions and 30 deletions

View File

@@ -15,14 +15,14 @@
// VulkanHpp Samples : 02_EnumerateDevices
// Enumerate physical devices
#include "..\utils\utils.hpp"
#include "../utils/utils.hpp"
#include "vulkan/vulkan.hpp"
#include <iostream>
static char const* AppName = "02_EnumerateDevices";
static char const* EngineName = "Vulkan.hpp";
int main(int /*argc*/, char * /*argv[]*/)
int main(int /*argc*/, char ** /*argv*/)
{
try
{