From ce50086c81b52979aa3d0c560dd8567cb8d1ec66 Mon Sep 17 00:00:00 2001 From: shenweip Date: Sun, 13 Oct 2013 10:32:56 +0800 Subject: [PATCH] Add new files to cmake and Android.mk --- CMakeLists.txt | 2 ++ Core/CMakeLists.txt | 1 + android/jni/Android.mk | 1 + 3 files changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index d56d3b394a..b2331f61fe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -763,6 +763,8 @@ add_library(${CoreLibName} ${CoreLinkType} Core/Dialog/PSPGamedataInstallDialog.h Core/Dialog/PSPMsgDialog.cpp Core/Dialog/PSPMsgDialog.h + Core/Dialog/PSPNetconfDialog.cpp + Core/Dialog/PSPNetconfDialog.h Core/Dialog/PSPOskDialog.cpp Core/Dialog/PSPOskDialog.h Core/Dialog/PSPPlaceholderDialog.cpp diff --git a/Core/CMakeLists.txt b/Core/CMakeLists.txt index e43723c313..fe58c9cc5e 100644 --- a/Core/CMakeLists.txt +++ b/Core/CMakeLists.txt @@ -8,6 +8,7 @@ set(SRCS Dialog/SavedataParam.cpp Dialog/PSPOskDialog.cpp Dialog/PSPGamedataInstallDialog.cpp + Dialog/PSPNetconfDialog.cpp MIPS/MIPS.cpp MIPS/MIPSAnalyst.cpp MIPS/MIPSCodeUtils.cpp diff --git a/android/jni/Android.mk b/android/jni/Android.mk index 9e036d6345..1d4b696492 100644 --- a/android/jni/Android.mk +++ b/android/jni/Android.mk @@ -245,6 +245,7 @@ LOCAL_SRC_FILES := \ $(SRC)/Core/Dialog/PSPDialog.cpp \ $(SRC)/Core/Dialog/PSPGamedataInstallDialog.cpp \ $(SRC)/Core/Dialog/PSPMsgDialog.cpp \ + $(SRC)/Core/Dialog/PSPNetconfDialog.cpp \ $(SRC)/Core/Dialog/PSPOskDialog.cpp \ $(SRC)/Core/Dialog/PSPPlaceholderDialog.cpp \ $(SRC)/Core/Dialog/PSPSaveDialog.cpp \