blob: 7bcb7ef1270b655be164055bd294cf9262e65220 [file] [log] [blame]
Max Weninger6284c622019-11-15 19:49:33 +01001LOCAL_PATH := $(call my-dir)
2
3include $(CLEAR_VARS)
4
5LOCAL_CPP_EXTENSION := cxx
6
7LOCAL_SRC_FILES := \
8 vncpasswd.cxx
9
10LOCAL_CFLAGS := -Ofast -Wall -Wformat=2 -DNDEBUG -UNDEBUG
11LOCAL_CFLAGS += -Wno-unused-parameter
12
13LOCAL_CPPFLAGS := -std=c++11 -fexceptions -frtti
14
15LOCAL_SHARED_LIBRARIES := \
16 libbinder \
17 libcrypto \
18 libcutils \
19 libgui \
20 libjpeg \
21 libssl \
22 libui \
23 libutils \
24 libz
25
26LOCAL_STATIC_LIBRARIES += \
27 libtigervnc
28
29LOCAL_C_INCLUDES += \
30 external/tigervnc/common
31
32LOCAL_MODULE := vncpasswd
33LOCAL_MODULE_TAGS := optional
34
35include $(BUILD_EXECUTABLE)