Changeset a8f0577 in opengl-game for makefile


Ignore:
Timestamp:
Jul 8, 2019, 5:01:29 PM (6 years ago)
Author:
Dmitry Portnoy <dmitry.portnoy@…>
Branches:
feature/imgui-sdl, master, points-test
Children:
80de39d
Parents:
7dcd925
Message:

Fix validation layer integration

File:
1 edited

Legend:

Unmodified
Added
Removed
  • makefile

    r7dcd925 ra8f0577  
    3434        $(CC) $^ $(DEP) $(CFLAGS) -o $@
    3535
    36 CXX_FLAGS = -std=c++17 -Wall -pedantic # -O3 -rdynamic
     36CXX_FLAGS = -std=c++17 -Wall -pedantic# -O3 -rdynamic
    3737
    3838ifeq ($(OS),Darwin)
     
    5151endif
    5252
    53 LIBS = -lSDL2
     53LIBS = `pkg-config --static --libs sdl2`
    5454ifeq ($(OS),Darwin)
    5555        LIBS := $(VULKAN_SDK_PATH)/lib/libvulkan.dylib $(LIBS)
     
    6161LIB_FLAGS = $(LIB_PATHS) $(LIBS)
    6262
    63 vulkangame: vulkan-game-ref.cpp #vulkan-game.cpp game-gui-sdl.cpp
     63vulkangame: vulkan-game.cpp game-gui-sdl.cpp
    6464        $(CC) $(CXX_FLAGS) -o $@ $^ $(LIB_FLAGS)
    6565
Note: See TracChangeset for help on using the changeset viewer.