fixing physical device pick issues

This commit is contained in:
2023-11-11 03:30:29 +01:00
parent ea6c2a3335
commit b75f543977
9 changed files with 100 additions and 61 deletions

View File

@@ -6,7 +6,7 @@
# By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2022/10/04 16:43:41 by maldavid #+# #+# #
# Updated: 2023/10/20 00:03:33 by maldavid ### ########.fr #
# Updated: 2023/11/10 23:55:12 by maldavid ### ########.fr #
# #
# **************************************************************************** #
@@ -23,6 +23,7 @@ OS = $(shell uname -s)
DEBUG ?= false
TOOLCHAIN ?= clang
IMAGES_OPTIMIZED ?= true
FORCE_INTEGRATED_GPU ?= false
CXX = clang++
@@ -43,6 +44,10 @@ ifeq ($(DEBUG), true)
CXXFLAGS += -g -D DEBUG
endif
ifeq ($(FORCE_INTEGRATED_GPU), true)
CXXFLAGS += -D FORCE_INTEGRATED_GPU
endif
ifeq ($(IMAGES_OPTIMIZED), true)
CXXFLAGS += -D IMAGE_OPTIMIZED
endif