blob: 6052ab2f8f8f20f1e3497db62d702bf65d77d663 [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
maxwen30fe8fb2023-10-25 14:35:52 +020034LOCAL_SYSTEM_EXT_MODULE := true
Max Weninger6284c622019-11-15 19:49:33 +010035
36include $(BUILD_EXECUTABLE)