Changeset 0e6ecf3 in opengl-game for makefile


Ignore:
Timestamp:
Jul 19, 2019, 8:50:06 PM (5 years ago)
Author:
Dmitry Portnoy <dmitry.portnoy@…>
Branches:
feature/imgui-sdl, master, points-test
Children:
8667f76
Parents:
75108ef
Message:

Create a game gui implementation using glfw3 and move window create/destruction and Vulkan surface creation to the game gui

File:
1 edited

Legend:

Unmodified
Added
Removed
  • makefile

    r75108ef r0e6ecf3  
    4242endif
    4343
    44 LIBS = `pkg-config --static --libs sdl2`
     44LIBS = `pkg-config --static --libs sdl2 glfw3`
    4545ifeq ($(OS),Darwin)
    4646        LIBS := $(VULKAN_SDK_PATH)/lib/libvulkan.dylib $(LIBS)
     
    5252LIB_FLAGS = $(LIB_PATHS) $(LIBS)
    5353
    54 vulkangame: vulkan-game.cpp game-gui-sdl.cpp
     54vulkangame: vulkan-game.cpp game-gui-sdl.cpp game-gui-glfw.cpp
    5555        $(CC) $(CXX_FLAGS) -o $@ $^ $(LIB_FLAGS)
    5656
Note: See TracChangeset for help on using the changeset viewer.