mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-12 13:10:06 +00:00
13 lines
342 B
Makefile
13 lines
342 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_CPP_EXTENSION := .cc .cpp .cxx
|
|
LOCAL_SRC_FILES:=test.cpp
|
|
LOCAL_MODULE:=glslang_ndk_test
|
|
LOCAL_LDLIBS:=-landroid
|
|
LOCAL_CXXFLAGS:=-std=c++11 -fno-exceptions -fno-rtti -Werror
|
|
LOCAL_STATIC_LIBRARIES:=glslang SPIRV HLSL
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
include $(LOCAL_PATH)/../Android.mk
|