Changeset 1c6cd5e in opengl-game for README.txt


Ignore:
Timestamp:
Jul 10, 2019, 3:10:26 AM (6 years ago)
Author:
Dmitry Portnoy <dmp1488@…>
Branches:
feature/imgui-sdl, master, points-test
Children:
f286a10
Parents:
b3671b5
git-author:
Dmitry Portnoy <dmp1488@…> (07/10/19 02:58:59)
git-committer:
Dmitry Portnoy <dmp1488@…> (07/10/19 03:10:26)
Message:

Create the VulkanGame VS2019 project and add it to the NewOpenGLGame solution

File:
1 edited

Legend:

Unmodified
Added
Removed
  • README.txt

    rb3671b5 r1c6cd5e  
    5353--------
    5454
    55 ???
     55Create an include directory inside the opengl-game folder
     56
     57Download GLM and copy the glm folder into /include
     58Download the SDL2 pre-built Windows binaries
     59 - Copy the SDL2 include folder into /include and rename it SDL2
     60 - Add the location of the lib/x64 folder to the VS2019 project properties under Linker/General/Addition Library DIrectories
     61
     62Download the vulkan sdk
     63 - Add the location of the Include folder to the VS2019 project properties under C/C++ -> General -> Addition Include DIrectories
     64 - Add the location of the Lib folder to the VS2019 project properties under Linker -> General -> Addition Library DIrectories
    5665
    5766Linux:
    5867--------
    5968
     69Download the vulkan sdk (make sure VULKAN_SDK_PATH in the makefile points to it)
     70
    6071sudo apt-get install libxcb1-dev xorg-dev libsdl2-dev libglm-dev
    61 
    62 Download the vulkan sdk (make sure VULKAN_SDK_PATH in the makefile points to it)
    6372
    6473source setup-env.sh into your current shell
    6574
    66 make vulkcangame && ./vulkangame
     75make vulkangame && ./vulkangame
    6776
    6877OSX
    6978--------
    7079
     80Download the vulkan sdk (make sure VULKAN_SDK_PATH in the makefile points to it)
     81
    7182brew install sdl2 (might need 'brew install sdl2 --HEAD')
    7283
    73 Download the vulkan sdk (make sure VULKAN_SDK_PATH in the makefile points to it)
    74 
    75 make vulkcangame && ./vulkangame
     84make vulkangame && ./vulkangame
Note: See TracChangeset for help on using the changeset viewer.