rhoconnect-client 5.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +9 -0
- data/CREDITS +0 -0
- data/LICENSE +9 -0
- data/README.md +47 -0
- data/ext/rhoconnect-client/RhoConnectClient.rb +190 -0
- data/ext/rhoconnect-client/ext/RhoConnectClient.xml +726 -0
- data/ext/rhoconnect-client/ext/build +26 -0
- data/ext/rhoconnect-client/ext/build.bat +30 -0
- data/ext/rhoconnect-client/ext/platform/android/ext_java.files +1 -0
- data/ext/rhoconnect-client/ext/platform/android/ext_native.files +14 -0
- data/ext/rhoconnect-client/ext/platform/android/src/com/rhoconnectclient/RhoconnectClient.java +1 -0
- data/ext/rhoconnect-client/ext/platform/iphone/.gitignore +1 -0
- data/ext/rhoconnect-client/ext/platform/iphone/Rakefile +74 -0
- data/ext/rhoconnect-client/ext/platform/iphone/RhoconnectClient.xcodeproj/project.pbxproj +390 -0
- data/ext/rhoconnect-client/ext/platform/iphone/RhoconnectClient_Prefix.pch +7 -0
- data/ext/rhoconnect-client/ext/platform/iphone/impl/readme.txt +7 -0
- data/ext/rhoconnect-client/ext/platform/qt/Rakefile +35 -0
- data/ext/rhoconnect-client/ext/platform/qt/rhoconnect-client.pro +88 -0
- data/ext/rhoconnect-client/ext/platform/wm/Rhoconnect-client.sln +36 -0
- data/ext/rhoconnect-client/ext/platform/wm/Rhoconnect-client.vcproj +774 -0
- data/ext/rhoconnect-client/ext/platform/wm/Rhoconnect-client.vsprops +15 -0
- data/ext/rhoconnect-client/ext/platform/wm/src/rhoconnectclient_wm.cpp +40 -0
- data/ext/rhoconnect-client/ext/platform/wm/src/rhoconnectclient_wm.h +2 -0
- data/ext/rhoconnect-client/ext/platform/wp8/Rhoconnect-client.props +22 -0
- data/ext/rhoconnect-client/ext/platform/wp8/Rhoconnect-client.sln +32 -0
- data/ext/rhoconnect-client/ext/platform/wp8/Rhoconnect-client.vcxproj +220 -0
- data/ext/rhoconnect-client/ext/platform/wp8/Rhoconnect-client.vcxproj.filters +103 -0
- data/ext/rhoconnect-client/ext/shared/RhoConnectClientImpl.cpp +273 -0
- data/ext/rhoconnect-client/ext/shared/RhoConnectClientImpl.h +60 -0
- data/ext/rhoconnect-client/ext/shared/RhoConnectClientSingletonImpl.h +53 -0
- data/ext/rhoconnect-client/ext/shared/initRhoconnectClient.cpp +207 -0
- data/ext/rhoconnect-client/ext/shared/rhoconnectclient.c +18 -0
- data/ext/rhoconnect-client/ext/shared/sync/ClientRegister.cpp +398 -0
- data/ext/rhoconnect-client/ext/shared/sync/ClientRegister.h +147 -0
- data/ext/rhoconnect-client/ext/shared/sync/ISyncProtocol.h +91 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncEngine.cpp +1245 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncEngine.h +213 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncNotify.cpp +737 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncNotify.h +209 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncProtocol_3.h +220 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncProtocol_4.h +259 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncSource.cpp +1694 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncSource.h +212 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncThread.cpp +583 -0
- data/ext/rhoconnect-client/ext/shared/sync/SyncThread.h +250 -0
- data/ext/rhoconnect-client/ext.yml +12 -0
- data/lib/build/run_rhoconnect_spec.rb +135 -0
- data/lib/rhoconnect-client.rb +3 -0
- data/platform/shared/RhoConnectClient/RhoConnectClient.cpp +1673 -0
- data/platform/shared/RhoConnectClient/RhoConnectClient.h +181 -0
- data/platform/shared/RhoConnectClient/RhoError.h +77 -0
- data/rhoconnect-client/C++/Tests/RhoConnectClientTest.cpp +830 -0
- data/rhoconnect-client/C++/Tests/win32/.gitignore +3 -0
- data/rhoconnect-client/C++/Tests/win32/RhoConnectClient.sln +65 -0
- data/rhoconnect-client/C++/Tests/win32/RhoConnectClient.vcproj +634 -0
- data/rhoconnect-client/C++/Tests/win32/RhoConnectClientTest/RhoConnectClientTest.vcproj +222 -0
- data/rhoconnect-client/C++/Tests/win32/RhoConnectClientTest/stdafx.h +65 -0
- data/rhoconnect-client/C++/Tests/win32/stdafx.h +65 -0
- data/rhoconnect-client/CHANGELOG +18 -0
- data/rhoconnect-client/Java/Android/build/android.rake +387 -0
- data/rhoconnect-client/Java/Android/build/android_sdk.rb +582 -0
- data/rhoconnect-client/Java/Android/build/libcurl_build.files +73 -0
- data/rhoconnect-client/Java/Android/build/libjson_build.files +9 -0
- data/rhoconnect-client/Java/Android/build/librhocommon_build.files +14 -0
- data/rhoconnect-client/Java/Android/build/librhodb_build.files +5 -0
- data/rhoconnect-client/Java/Android/build/librhoimpl_build.files +13 -0
- data/rhoconnect-client/Java/Android/build/librholog_build.files +4 -0
- data/rhoconnect-client/Java/Android/build/libsqlite_build.files +1 -0
- data/rhoconnect-client/Java/Android/build/libsync_build.files +7 -0
- data/rhoconnect-client/Java/Android/build/libunzip_build.files +1 -0
- data/rhoconnect-client/Java/Android/build/rhoconnectclient_build.files +3 -0
- data/rhoconnect-client/Java/Android/build/rhoimpljava_build.files +21 -0
- data/rhoconnect-client/Java/Android/src/com/rhomobile/rhodes/Capabilities.java +63 -0
- data/rhoconnect-client/Java/Android/src/com/rhomobile/rhodes/MemoryInfoCollector.java +79 -0
- data/rhoconnect-client/Java/Android/src/com/rhomobile/rhodes/util/ContextFactory.java +63 -0
- data/rhoconnect-client/Java/Android/test/.classpath +9 -0
- data/rhoconnect-client/Java/Android/test/.project +33 -0
- data/rhoconnect-client/Java/Android/test/AndroidManifest.xml +14 -0
- data/rhoconnect-client/Java/Android/test/assets/apps/androidtest.png +0 -0
- data/rhoconnect-client/Java/Android/test/assets/apps/rhoconfig.txt +19 -0
- data/rhoconnect-client/Java/Android/test/assets/apps/rhoconfig.txt.timestamp +1 -0
- data/rhoconnect-client/Java/Android/test/assets/db/syncdb.schema +44 -0
- data/rhoconnect-client/Java/Android/test/assets/db/syncdb.triggers +10 -0
- data/rhoconnect-client/Java/Android/test/assets/db/syncdb_java.triggers +21 -0
- data/rhoconnect-client/Java/Android/test/assets/rho.dat +9 -0
- data/rhoconnect-client/Java/Android/test/proguard.cfg +36 -0
- data/rhoconnect-client/Java/Android/test/project.properties +11 -0
- data/rhoconnect-client/Java/Android/test/res/drawable-hdpi/icon.png +0 -0
- data/rhoconnect-client/Java/Android/test/res/drawable-ldpi/icon.png +0 -0
- data/rhoconnect-client/Java/Android/test/res/drawable-mdpi/icon.png +0 -0
- data/rhoconnect-client/Java/Android/test/res/layout/main.xml +12 -0
- data/rhoconnect-client/Java/Android/test/res/values/strings.xml +5 -0
- data/rhoconnect-client/Java/Android/test/rhoimpl.jar +0 -0
- data/rhoconnect-client/Java/Android/test/src/com/rhomobile/rhoconnect_client_test/TestRhoConnectClient.java +343 -0
- data/rhoconnect-client/Java/Android/test/src/com/rhomobile/rhoconnect_client_test/TestRhoConnectClientBlobs.java +219 -0
- data/rhoconnect-client/Java/RhoConnect/.classpath +6 -0
- data/rhoconnect-client/Java/RhoConnect/.project +93 -0
- data/rhoconnect-client/Java/RhoConnect/assets/apps/rhoconfig.txt +19 -0
- data/rhoconnect-client/Java/RhoConnect/assets/apps/rhoconfig.txt.timestamp +1 -0
- data/rhoconnect-client/Java/RhoConnect/assets/db/syncdb.schema +44 -0
- data/rhoconnect-client/Java/RhoConnect/assets/db/syncdb.triggers +10 -0
- data/rhoconnect-client/Java/RhoConnect/assets/db/syncdb_java.triggers +21 -0
- data/rhoconnect-client/Java/RhoConnect/assets/rho.dat +8 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/RhoConnectJniNotify.h +61 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/com_rhomobile_rhoconnect_RhoConnectClient.h +181 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/com_rhomobile_rhoconnect_RhoConnectNotify.h +13 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/com_rhomobile_rhoconnect_RhoConnectNotify_IDelegate.h +13 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/com_rhomobile_rhoconnect_RhoConnectObjectNotify.h +13 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/com_rhomobile_rhoconnect_RhoConnectObjectNotify_IDelegate.h +13 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/com_rhomobile_rhoconnect_RhomModel.h +103 -0
- data/rhoconnect-client/Java/RhoConnect/jni/include/rhojava.inc +76 -0
- data/rhoconnect-client/Java/RhoConnect/jni/src/RhoConnectJniClient.cpp +401 -0
- data/rhoconnect-client/Java/RhoConnect/jni/src/RhoConnectJniModel.cpp +332 -0
- data/rhoconnect-client/Java/RhoConnect/jni/src/RhoConnectJniNotify.cpp +223 -0
- data/rhoconnect-client/Java/RhoConnect/jni/src/RhoConnectUtil.cpp +82 -0
- data/rhoconnect-client/Java/RhoConnect/jni/src/RhodesApp.cpp +114 -0
- data/rhoconnect-client/Java/RhoConnect/src/com/rhomobile/rhoconnect/RhoConnectClient.java +108 -0
- data/rhoconnect-client/Java/RhoConnect/src/com/rhomobile/rhoconnect/RhoConnectNotify.java +78 -0
- data/rhoconnect-client/Java/RhoConnect/src/com/rhomobile/rhoconnect/RhoConnectObjectNotify.java +71 -0
- data/rhoconnect-client/Java/RhoConnect/src/com/rhomobile/rhoconnect/RhomModel.java +195 -0
- data/rhoconnect-client/JavaScript/.classpath +10 -0
- data/rhoconnect-client/JavaScript/.gitignore +4 -0
- data/rhoconnect-client/JavaScript/.project +17 -0
- data/rhoconnect-client/JavaScript/README.textile +1 -0
- data/rhoconnect-client/JavaScript/build.xml +185 -0
- data/rhoconnect-client/JavaScript/doc/fsm-sample.js +44 -0
- data/rhoconnect-client/JavaScript/doc/fsm-sample.png +0 -0
- data/rhoconnect-client/JavaScript/src/RhoSyncJS.gwt.xml +21 -0
- data/rhoconnect-client/JavaScript/stubs/RhoSyncStubsJS.gwt.xml +21 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/Capabilities.java +7 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/IRhoRubyHelper.java +7 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/Mutex.java +5 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhoAppAdapter.java +39 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhoClassFactory.java +29 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhoConf.java +100 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhoEmptyLogger.java +7 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhoEmptyProfiler.java +5 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhoLogger.java +32 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhoProfiler.java +27 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/RhodesApp.java +25 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/TimeInterval.java +22 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/Tokenizer.java +23 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/db/DBAdapter.java +174 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/db/DBAttrManager.java +15 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/db/DBException.java +5 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/db/IDBResult.java +27 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/file/IFileAccess.java +7 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/file/SimpleFile.java +15 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/net/IHttpConnection.java +22 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/net/NetRequest.java +324 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/net/NetResponse.java +51 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/net/URI.java +64 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/sync/ClientRegister.java +15 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/sync/JSONArrayIterator.java +37 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/sync/JSONEntry.java +48 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/sync/JSONStructIterator.java +41 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/sync/SyncNotify.java +98 -0
- data/rhoconnect-client/JavaScript/stubs/com/rho/sync/SyncThread.java +92 -0
- data/rhoconnect-client/JavaScript/war/WEB-INF/lib/gwt-servlet-deps.jar +0 -0
- data/rhoconnect-client/JavaScript/war/WEB-INF/lib/gwt-servlet.jar +0 -0
- data/rhoconnect-client/JavaScript/war/js/fsm-sample.js +54 -0
- data/rhoconnect-client/JavaScript/war/js/rhosync-api.js +237 -0
- data/rhoconnect-client/JavaScript/war/js/rhosync-fsm.js +307 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/4C71D69C9BBC9E6F05C6BA49B01BCBC1.cache.html +3122 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/5146F4FFF34511C8BB2661E920B49E3A.cache.html +3254 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/5248C67481D9D27AD0703D15CDBD2A1C.cache.html +3147 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/EE1DC2692C9C32367B53A39E2358AF23.cache.html +3195 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/clear.cache.gif +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/corner.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/corner_ie6.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/hborder.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/hborder_ie6.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/ie6/corner_dialog_topleft.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/ie6/corner_dialog_topright.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/ie6/hborder_blue_shadow.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/ie6/hborder_gray_shadow.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/ie6/vborder_blue_shadow.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/ie6/vborder_gray_shadow.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/splitPanelThumb.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/vborder.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/images/vborder_ie6.png +0 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/standard.css +1144 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/gwt/standard/standard_rtl.css +1145 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/hosted.html +350 -0
- data/rhoconnect-client/JavaScript/war/rhosyncjs/rhosyncjs.nocache.js +314 -0
- data/rhoconnect-client/JavaScript/war/test/SpecRunner.html +35 -0
- data/rhoconnect-client/JavaScript/war/test/dbtest.html +38 -0
- data/rhoconnect-client/JavaScript/war/test/lib/jasmine-1.0.1/MIT.LICENSE +20 -0
- data/rhoconnect-client/JavaScript/war/test/lib/jasmine-1.0.1/jasmine-html.js +188 -0
- data/rhoconnect-client/JavaScript/war/test/lib/jasmine-1.0.1/jasmine.css +166 -0
- data/rhoconnect-client/JavaScript/war/test/lib/jasmine-1.0.1/jasmine.js +2421 -0
- data/rhoconnect-client/JavaScript/war/test/spec/SpecHelper.js +7 -0
- data/rhoconnect-client/JavaScript/war/test/spec/SyncApiSpec.js +573 -0
- data/rhoconnect-client/JavaScript/war/test/spec/samples/PlayerSpec.js +58 -0
- data/rhoconnect-client/JavaScript/war/test/worker-test.js +17 -0
- data/rhoconnect-client/LICENSE +41 -0
- data/rhoconnect-client/ObjectiveC/RhoConnectClient.h +118 -0
- data/rhoconnect-client/ObjectiveC/RhoConnectClient.m +641 -0
- data/rhoconnect-client/ObjectiveC/RhoConnectClient.xcodeproj/project.pbxproj +1434 -0
- data/rhoconnect-client/ObjectiveC/RhoConnectNotify.h +83 -0
- data/rhoconnect-client/ObjectiveC/RhoConnectNotify.m +181 -0
- data/rhoconnect-client/ObjectiveC/RhoConnectObjectNotify.h +65 -0
- data/rhoconnect-client/ObjectiveC/RhoConnectObjectNotify.m +73 -0
- data/rhoconnect-client/ObjectiveC/RhomModel.h +101 -0
- data/rhoconnect-client/ObjectiveC/RhomModel.m +320 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/MainWindow.xib +198 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/RhoConnectClientTest-Info.plist +30 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/RhoConnectClientTest.xcodeproj/project.pbxproj +373 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/RhoConnectClientTestAppDelegate.h +58 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/RhoConnectClientTestAppDelegate.m +84 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/RhoConnectClientTest_Prefix.pch +8 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/invalid_import_db.zip +0 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/main.m +1096 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/test.png +0 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/test2.png +0 -0
- data/rhoconnect-client/ObjectiveC/Tests/RhoConnectClientTest/valid_import_db.zip +0 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/Classes/ptestsAppDelegate.h +62 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/Classes/ptestsAppDelegate.m +35 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/Classes/ptestsViewController.h +78 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/Classes/ptestsViewController.m +549 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/MainWindow.xib +227 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/main.m +17 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/ptests-Info.plist +30 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/ptests.xcodeproj/project.pbxproj +363 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/ptestsViewController.xib +641 -0
- data/rhoconnect-client/ObjectiveC/Tests/ptests/ptests_Prefix.pch +8 -0
- data/rhoconnect-client/README.textile +23 -0
- data/rhoconnect-client/Rakefile +20 -0
- data/rhoconnect-client/Samples/Java/android_store/.classpath +8 -0
- data/rhoconnect-client/Samples/Java/android_store/.project +33 -0
- data/rhoconnect-client/Samples/Java/android_store/AndroidManifest.xml +24 -0
- data/rhoconnect-client/Samples/Java/android_store/assets/apps/rhoconfig.txt +19 -0
- data/rhoconnect-client/Samples/Java/android_store/assets/apps/rhoconfig.txt.timestamp +1 -0
- data/rhoconnect-client/Samples/Java/android_store/assets/db/syncdb.schema +44 -0
- data/rhoconnect-client/Samples/Java/android_store/assets/db/syncdb.triggers +10 -0
- data/rhoconnect-client/Samples/Java/android_store/assets/db/syncdb_java.triggers +21 -0
- data/rhoconnect-client/Samples/Java/android_store/assets/rho.dat +8 -0
- data/rhoconnect-client/Samples/Java/android_store/default.properties +11 -0
- data/rhoconnect-client/Samples/Java/android_store/project.properties +14 -0
- data/rhoconnect-client/Samples/Java/android_store/res/drawable-hdpi/icon.png +0 -0
- data/rhoconnect-client/Samples/Java/android_store/res/drawable-ldpi/icon.png +0 -0
- data/rhoconnect-client/Samples/Java/android_store/res/drawable-mdpi/icon.png +0 -0
- data/rhoconnect-client/Samples/Java/android_store/res/layout/main.xml +12 -0
- data/rhoconnect-client/Samples/Java/android_store/res/values/strings.xml +5 -0
- data/rhoconnect-client/Samples/Java/android_store/rhoimpl.jar +0 -0
- data/rhoconnect-client/Samples/Java/android_store/src/com/rhomobile/android_store/StoreActivity.java +68 -0
- data/rhoconnect-client/Samples/Java/android_store/src/com/rhomobile/android_store/StoreApplication.java +15 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/LoginViewController.h +70 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/LoginViewController.m +94 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/RhoConnectEngine.h +82 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/RhoConnectEngine.m +119 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/RootViewController.h +63 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/RootViewController.m +314 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/WaitLoginController.h +65 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/WaitLoginController.m +110 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/storeAppDelegate.h +61 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/Classes/storeAppDelegate.m +171 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/LoginViewController.xib +779 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/MainWindow.xib +580 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/RootViewController.xib +384 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/WaitLoginController.xib +557 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/icon.png +0 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/main.m +22 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/store-Info.plist +30 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/store.xcodeproj/project.pbxproj +367 -0
- data/rhoconnect-client/Samples/ObjectiveC/store/store_Prefix.pch +14 -0
- data/rhoconnect-client/build.yml +3 -0
- data/rhoconnect-client/version +1 -0
- metadata +314 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
contains files with module API Implementation.
|
|
2
|
+
|
|
3
|
+
Developer should create it - after first generation this folder is empty and this folder do not changed with next generation processes !!!.
|
|
4
|
+
|
|
5
|
+
Developer should make at least <ModuleName>FactorySingleton.m with acees to <ModuleName>Factory interface!
|
|
6
|
+
All other files include base_impl can be removed from project if it wants by developer.
|
|
7
|
+
Default stub generated code placed in stub_impl folder - you can just copy all files from /generated/stub_impl to this folder and implement unemplemented methods.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
def build_extension(name)
|
|
2
|
+
require File.join($rootdir, 'lib/build/jake.rb')
|
|
3
|
+
args = ['-o', 'Makefile', '-r', '-spec', $qmake_spec, "#{name}.pro", 'CONFIG-=debug', 'CONFIG+=release', 'CONFIG+=no_fixpath', "RHODES_ROOT='#{$rootdir}'", $qmakevars]
|
|
4
|
+
puts Jake.run($qmake,args)
|
|
5
|
+
fail "[qmake #{name}.pro]" unless $? == 0
|
|
6
|
+
#puts Jake.run($make, ['clean'])
|
|
7
|
+
fail "[make clean]" unless $? == 0
|
|
8
|
+
puts Jake.run($make, ['all'])
|
|
9
|
+
fail "[make all]" unless $? == 0
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
namespace "build" do
|
|
13
|
+
task :config do
|
|
14
|
+
$platform = ENV['RHO_PLATFORM']
|
|
15
|
+
raise "RHO_PLATFORM is not set" if $platform.nil?
|
|
16
|
+
$rootdir = ENV['RHO_ROOT']
|
|
17
|
+
raise "RHO_ROOT is not set" if $rootdir.nil?
|
|
18
|
+
$qmake = ENV['RHO_QMAKE']
|
|
19
|
+
raise "RHO_QMAKE is not set" if $qmake.nil?
|
|
20
|
+
$qmake_spec = ENV['RHO_QMAKE_SPEC']
|
|
21
|
+
raise "RHO_QMAKE_SPEC is not set" if $qmake_spec.nil?
|
|
22
|
+
$qmakevars = ENV['RHO_QMAKE_VARS']
|
|
23
|
+
if $platform == 'win32'
|
|
24
|
+
$make = 'nmake'
|
|
25
|
+
else
|
|
26
|
+
$make = 'make'
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
task :all => :config do
|
|
31
|
+
build_extension('rhoconnect-client')
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
task :default => "build:all"
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
QT -= core
|
|
2
|
+
|
|
3
|
+
TARGET = rhoconnect-client
|
|
4
|
+
TEMPLATE = lib
|
|
5
|
+
|
|
6
|
+
CONFIG += staticlib warn_on
|
|
7
|
+
|
|
8
|
+
isEmpty(RHODES_ROOT) {
|
|
9
|
+
RHODES_ROOT = ../../../../../../rhodes
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
INCLUDEPATH += \
|
|
13
|
+
$$RHODES_ROOT/lib/commonAPI/coreapi/ext/shared\
|
|
14
|
+
$$RHODES_ROOT/platform/shared/common\
|
|
15
|
+
$$RHODES_ROOT/platform/shared/rubyext\
|
|
16
|
+
$$RHODES_ROOT/platform/shared/ruby/include\
|
|
17
|
+
$$RHODES_ROOT/platform/shared\
|
|
18
|
+
$$RHODES_ROOT/platform/shared/sync\
|
|
19
|
+
$$RHODES_ROOT/platform/shared\
|
|
20
|
+
../../shared\
|
|
21
|
+
../../shared/sync
|
|
22
|
+
|
|
23
|
+
macx {
|
|
24
|
+
DESTDIR = $$RHODES_ROOT/platform/osx/bin/extensions
|
|
25
|
+
OBJECTS_DIR = $$RHODES_ROOT/platform/osx/bin/extensions/rhoconnect-client
|
|
26
|
+
INCLUDEPATH += $$RHODES_ROOT/platform/shared/ruby/iphone
|
|
27
|
+
}
|
|
28
|
+
win32 {
|
|
29
|
+
DESTDIR = $$RHODES_ROOT/platform/win32/bin/extensions
|
|
30
|
+
OBJECTS_DIR = $$RHODES_ROOT/platform/win32/bin/extensions/rhoconnect-client
|
|
31
|
+
DEFINES += WIN32 _WINDOWS _LIB _UNICODE UNICODE
|
|
32
|
+
debug {
|
|
33
|
+
DEFINES += _DEBUG DEBUG
|
|
34
|
+
}
|
|
35
|
+
release {
|
|
36
|
+
DEFINES += _NDEBUG NDEBUG
|
|
37
|
+
}
|
|
38
|
+
INCLUDEPATH += $$RHODES_ROOT/platform/shared/ruby/win32
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
DEFINES += RHODES_QT_PLATFORM _XOPEN_SOURCE _DARWIN_C_SOURCE
|
|
42
|
+
|
|
43
|
+
!isEmpty(RHOSIMULATOR_BUILD) {
|
|
44
|
+
DEFINES += RHODES_EMULATOR
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
!win32 {
|
|
48
|
+
QMAKE_CFLAGS_WARN_ON += -Wno-extra -Wno-unused -Wno-sign-compare -Wno-format -Wno-parentheses
|
|
49
|
+
QMAKE_CXXFLAGS_WARN_ON += -Wno-extra -Wno-unused -Wno-sign-compare -Wno-format -Wno-parentheses
|
|
50
|
+
# QMAKE_CFLAGS += -fvisibility=hidden
|
|
51
|
+
# QMAKE_CXXFLAGS += -fvisibility=hidden
|
|
52
|
+
}
|
|
53
|
+
win32 {
|
|
54
|
+
QMAKE_CFLAGS_WARN_ON += /wd4996 /wd4100 /wd4005
|
|
55
|
+
QMAKE_CXXFLAGS_WARN_ON += /wd4996 /wd4100 /wd4005
|
|
56
|
+
QMAKE_CFLAGS_RELEASE += /O2
|
|
57
|
+
QMAKE_CXXFLAGS_RELEASE += /O2
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
HEADERS += \
|
|
61
|
+
../../shared/RhoConnectClientImpl.h\
|
|
62
|
+
../../shared/RhoConnectClientSingletonImpl.h\
|
|
63
|
+
../../shared/generated/cpp/IRhoConnectClient.h\
|
|
64
|
+
../../shared/generated/cpp/RhoConnectClientBase.h\
|
|
65
|
+
../../shared/sync/ClientRegister.h\
|
|
66
|
+
../../shared/sync/ISyncProtocol.h\
|
|
67
|
+
../../shared/sync/SyncEngine.h\
|
|
68
|
+
../../shared/sync/SyncNotify.h\
|
|
69
|
+
../../shared/sync/SyncProtocol_3.h\
|
|
70
|
+
../../shared/sync/SyncProtocol_4.h\
|
|
71
|
+
../../shared/sync/SyncSource.h\
|
|
72
|
+
../../shared/sync/SyncThread.h
|
|
73
|
+
|
|
74
|
+
SOURCES += \
|
|
75
|
+
../../shared/RhoConnectClientImpl.cpp\
|
|
76
|
+
../../shared/initRhoconnectClient.cpp\
|
|
77
|
+
../../shared/rhoconnectclient.c\
|
|
78
|
+
../../shared/generated/rhoconnectclient_api_init.cpp\
|
|
79
|
+
../../shared/generated/rhoconnectclient_js_api.cpp\
|
|
80
|
+
../../shared/generated/rhoconnectclient_ruby_api.c\
|
|
81
|
+
../../shared/generated/cpp/RhoConnectClientBase.cpp\
|
|
82
|
+
../../shared/generated/cpp/RhoConnectClient_js_wrap.cpp\
|
|
83
|
+
../../shared/generated/cpp/RhoConnectClient_ruby_wrap.cpp\
|
|
84
|
+
../../shared/sync/ClientRegister.cpp\
|
|
85
|
+
../../shared/sync/SyncEngine.cpp\
|
|
86
|
+
../../shared/sync/SyncNotify.cpp\
|
|
87
|
+
../../shared/sync/SyncSource.cpp\
|
|
88
|
+
../../shared/sync/SyncThread.cpp
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
|
|
2
|
+
Microsoft Visual Studio Solution File, Format Version 10.00
|
|
3
|
+
# Visual Studio 2008
|
|
4
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Rhoconnect-client", "Rhoconnect-client.vcproj", "{0A785FEF-1B00-4CD9-B261-A83C6FFE7199}"
|
|
5
|
+
EndProject
|
|
6
|
+
Global
|
|
7
|
+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
8
|
+
Debug|MC3000c50b (ARMV4I) = Debug|MC3000c50b (ARMV4I)
|
|
9
|
+
Debug|Win32 = Debug|Win32
|
|
10
|
+
Debug|Windows Mobile 6 Professional SDK (ARMV4I) = Debug|Windows Mobile 6 Professional SDK (ARMV4I)
|
|
11
|
+
Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I) = Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)
|
|
12
|
+
Release|MC3000c50b (ARMV4I) = Release|MC3000c50b (ARMV4I)
|
|
13
|
+
Release|Win32 = Release|Win32
|
|
14
|
+
Release|Windows Mobile 6 Professional SDK (ARMV4I) = Release|Windows Mobile 6 Professional SDK (ARMV4I)
|
|
15
|
+
Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I) = Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)
|
|
16
|
+
EndGlobalSection
|
|
17
|
+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
18
|
+
{0A785FEF-1B00-4CD9-B261-A83C6FFE7199}.Debug|MC3000c50b (ARMV4I).ActiveCfg = Debug|MC3000c50b (ARMV4I)
|
|
19
|
+
{0A785FEF-1B00-4CD9-B261-A83C6FFE7199}.Debug|MC3000c50b (ARMV4I).Build.0 = Debug|MC3000c50b (ARMV4I)
|
|
20
|
+
{0A785FEF-1B00-4CD9-B261-A83C6FFE7199}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
21
|
+
{0A785FEF-1B00-4CD9-B261-A83C6FFE7199}.Debug|Win32.Build.0 = Debug|Win32
|
|
22
|
+
{0A785FEF-1B00-4CD9-B261-A83C6FFE7199}.Debug|Windows Mobile 6 Professional SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 6 Professional SDK (ARMV4I)
|
|
23
|
+
{0A785FEF-1B00-4CD9-B261-A83C6FFE7199}.Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I).ActiveCfg = Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)
|
|
24
|
+
{0A785FEF-1B00-4CD9-B261-A83C6FFE7199}.Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I).Build.0 = Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)
|
|
25
|
+
{0A785FEF-1B00-4CD9-B261-A83C6FFE7199}.Release|MC3000c50b (ARMV4I).ActiveCfg = Release|MC3000c50b (ARMV4I)
|
|
26
|
+
{0A785FEF-1B00-4CD9-B261-A83C6FFE7199}.Release|MC3000c50b (ARMV4I).Build.0 = Release|MC3000c50b (ARMV4I)
|
|
27
|
+
{0A785FEF-1B00-4CD9-B261-A83C6FFE7199}.Release|Win32.ActiveCfg = Release|Win32
|
|
28
|
+
{0A785FEF-1B00-4CD9-B261-A83C6FFE7199}.Release|Win32.Build.0 = Release|Win32
|
|
29
|
+
{0A785FEF-1B00-4CD9-B261-A83C6FFE7199}.Release|Windows Mobile 6 Professional SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 6 Professional SDK (ARMV4I)
|
|
30
|
+
{0A785FEF-1B00-4CD9-B261-A83C6FFE7199}.Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I).ActiveCfg = Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)
|
|
31
|
+
{0A785FEF-1B00-4CD9-B261-A83C6FFE7199}.Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I).Build.0 = Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)
|
|
32
|
+
EndGlobalSection
|
|
33
|
+
GlobalSection(SolutionProperties) = preSolution
|
|
34
|
+
HideSolutionNode = FALSE
|
|
35
|
+
EndGlobalSection
|
|
36
|
+
EndGlobal
|
|
@@ -0,0 +1,774 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="windows-1251"?>
|
|
2
|
+
<VisualStudioProject
|
|
3
|
+
ProjectType="Visual C++"
|
|
4
|
+
Version="9.00"
|
|
5
|
+
Name="Rhoconnect-client"
|
|
6
|
+
ProjectGUID="{0A785FEF-1B00-4CD9-B261-A83C6FFE7199}"
|
|
7
|
+
Keyword="Win32Proj"
|
|
8
|
+
TargetFrameworkVersion="131072"
|
|
9
|
+
>
|
|
10
|
+
<Platforms>
|
|
11
|
+
<Platform
|
|
12
|
+
Name="Windows Mobile 6 Professional SDK (ARMV4I)"
|
|
13
|
+
/>
|
|
14
|
+
<Platform
|
|
15
|
+
Name="Win32"
|
|
16
|
+
/>
|
|
17
|
+
<Platform
|
|
18
|
+
Name="MC3000c50b (ARMV4I)"
|
|
19
|
+
/>
|
|
20
|
+
<Platform
|
|
21
|
+
Name="Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
|
|
22
|
+
/>
|
|
23
|
+
</Platforms>
|
|
24
|
+
<ToolFiles>
|
|
25
|
+
</ToolFiles>
|
|
26
|
+
<Configurations>
|
|
27
|
+
<Configuration
|
|
28
|
+
Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"
|
|
29
|
+
OutputDirectory="$(RHO_ROOT)\Platform\wm\Bin\$(PlatformName)\Rhodes\$(ConfigurationName)"
|
|
30
|
+
IntermediateDirectory="$(TEMP_FILES_DIR)\$(ConfigurationName)"
|
|
31
|
+
ConfigurationType="4"
|
|
32
|
+
InheritedPropertySheets=".\Rhoconnect-client.vsprops"
|
|
33
|
+
CharacterSet="1"
|
|
34
|
+
>
|
|
35
|
+
<Tool
|
|
36
|
+
Name="VCPreBuildEventTool"
|
|
37
|
+
/>
|
|
38
|
+
<Tool
|
|
39
|
+
Name="VCCustomBuildTool"
|
|
40
|
+
/>
|
|
41
|
+
<Tool
|
|
42
|
+
Name="VCXMLDataGeneratorTool"
|
|
43
|
+
/>
|
|
44
|
+
<Tool
|
|
45
|
+
Name="VCWebServiceProxyGeneratorTool"
|
|
46
|
+
/>
|
|
47
|
+
<Tool
|
|
48
|
+
Name="VCMIDLTool"
|
|
49
|
+
/>
|
|
50
|
+
<Tool
|
|
51
|
+
Name="VCCLCompilerTool"
|
|
52
|
+
ExecutionBucket="7"
|
|
53
|
+
Optimization="0"
|
|
54
|
+
AdditionalIncludeDirectories=""$(RHO_ROOT)\platform\shared\sync";"$(RHO_ROOT)\platform\shared\ruby\wince";"$(RHO_ROOT)\platform\shared\ruby\include";"$(RHO_ROOT)\platform\shared";"$(RHO_ROOT)\platform\shared\common";..\..\shared;"$(RHO_ROOT)\lib\commonAPI\coreapi\ext\shared""
|
|
55
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
|
56
|
+
MinimalRebuild="true"
|
|
57
|
+
RuntimeLibrary="1"
|
|
58
|
+
UsePrecompiledHeader="0"
|
|
59
|
+
WarningLevel="3"
|
|
60
|
+
DebugInformationFormat="3"
|
|
61
|
+
/>
|
|
62
|
+
<Tool
|
|
63
|
+
Name="VCManagedResourceCompilerTool"
|
|
64
|
+
/>
|
|
65
|
+
<Tool
|
|
66
|
+
Name="VCResourceCompilerTool"
|
|
67
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
|
68
|
+
Culture="1033"
|
|
69
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
|
70
|
+
/>
|
|
71
|
+
<Tool
|
|
72
|
+
Name="VCPreLinkEventTool"
|
|
73
|
+
/>
|
|
74
|
+
<Tool
|
|
75
|
+
Name="VCLibrarianTool"
|
|
76
|
+
AdditionalOptions=" /subsystem:windowsce,5.02"
|
|
77
|
+
OutputFile="$(OutDir)/Rhoconnect-client.lib"
|
|
78
|
+
/>
|
|
79
|
+
<Tool
|
|
80
|
+
Name="VCALinkTool"
|
|
81
|
+
/>
|
|
82
|
+
<Tool
|
|
83
|
+
Name="VCXDCMakeTool"
|
|
84
|
+
/>
|
|
85
|
+
<Tool
|
|
86
|
+
Name="VCBscMakeTool"
|
|
87
|
+
/>
|
|
88
|
+
<Tool
|
|
89
|
+
Name="VCFxCopTool"
|
|
90
|
+
/>
|
|
91
|
+
<Tool
|
|
92
|
+
Name="VCCodeSignTool"
|
|
93
|
+
/>
|
|
94
|
+
<Tool
|
|
95
|
+
Name="VCPostBuildEventTool"
|
|
96
|
+
/>
|
|
97
|
+
<DeploymentTool
|
|
98
|
+
ForceDirty="-1"
|
|
99
|
+
RemoteDirectory=""
|
|
100
|
+
RegisterOutput="0"
|
|
101
|
+
AdditionalFiles=""
|
|
102
|
+
/>
|
|
103
|
+
<DebuggerTool
|
|
104
|
+
/>
|
|
105
|
+
</Configuration>
|
|
106
|
+
<Configuration
|
|
107
|
+
Name="Debug|Win32"
|
|
108
|
+
OutputDirectory="$(RHO_ROOT)\Platform\wm\Bin\$(PlatformName)\Rhodes\$(ConfigurationName)"
|
|
109
|
+
IntermediateDirectory="$(TEMP_FILES_DIR)\$(ConfigurationName)"
|
|
110
|
+
ConfigurationType="4"
|
|
111
|
+
InheritedPropertySheets=".\Rhoconnect-client.vsprops"
|
|
112
|
+
CharacterSet="1"
|
|
113
|
+
>
|
|
114
|
+
<Tool
|
|
115
|
+
Name="VCPreBuildEventTool"
|
|
116
|
+
/>
|
|
117
|
+
<Tool
|
|
118
|
+
Name="VCCustomBuildTool"
|
|
119
|
+
/>
|
|
120
|
+
<Tool
|
|
121
|
+
Name="VCXMLDataGeneratorTool"
|
|
122
|
+
/>
|
|
123
|
+
<Tool
|
|
124
|
+
Name="VCWebServiceProxyGeneratorTool"
|
|
125
|
+
/>
|
|
126
|
+
<Tool
|
|
127
|
+
Name="VCMIDLTool"
|
|
128
|
+
/>
|
|
129
|
+
<Tool
|
|
130
|
+
Name="VCCLCompilerTool"
|
|
131
|
+
Optimization="0"
|
|
132
|
+
AdditionalIncludeDirectories=""$(RHO_ROOT)\platform\shared\sync";"$(RHO_ROOT)\platform\shared\ruby\win32";"$(RHO_ROOT)\platform\shared\ruby\include";"$(RHO_ROOT)\platform\shared";"$(RHO_ROOT)\platform\shared\common";..\..\shared;"$(RHO_ROOT)\lib\commonAPI\coreapi\ext\shared""
|
|
133
|
+
PreprocessorDefinitions="_DEBUG;WIN32;WINDOWS;DEBUG;_LIB;_UNICODE;UNICODE"
|
|
134
|
+
MinimalRebuild="true"
|
|
135
|
+
RuntimeLibrary="1"
|
|
136
|
+
UsePrecompiledHeader="0"
|
|
137
|
+
WarningLevel="3"
|
|
138
|
+
DebugInformationFormat="3"
|
|
139
|
+
/>
|
|
140
|
+
<Tool
|
|
141
|
+
Name="VCManagedResourceCompilerTool"
|
|
142
|
+
/>
|
|
143
|
+
<Tool
|
|
144
|
+
Name="VCResourceCompilerTool"
|
|
145
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
|
146
|
+
Culture="1033"
|
|
147
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
|
148
|
+
/>
|
|
149
|
+
<Tool
|
|
150
|
+
Name="VCPreLinkEventTool"
|
|
151
|
+
/>
|
|
152
|
+
<Tool
|
|
153
|
+
Name="VCLibrarianTool"
|
|
154
|
+
OutputFile="$(OutDir)/Rhoconnect-client.lib"
|
|
155
|
+
/>
|
|
156
|
+
<Tool
|
|
157
|
+
Name="VCALinkTool"
|
|
158
|
+
/>
|
|
159
|
+
<Tool
|
|
160
|
+
Name="VCXDCMakeTool"
|
|
161
|
+
/>
|
|
162
|
+
<Tool
|
|
163
|
+
Name="VCBscMakeTool"
|
|
164
|
+
/>
|
|
165
|
+
<Tool
|
|
166
|
+
Name="VCFxCopTool"
|
|
167
|
+
/>
|
|
168
|
+
<Tool
|
|
169
|
+
Name="VCPostBuildEventTool"
|
|
170
|
+
/>
|
|
171
|
+
</Configuration>
|
|
172
|
+
<Configuration
|
|
173
|
+
Name="Debug|MC3000c50b (ARMV4I)"
|
|
174
|
+
OutputDirectory="$(RHO_ROOT)\Platform\wm\Bin\$(PlatformName)\Rhodes\$(ConfigurationName)"
|
|
175
|
+
IntermediateDirectory="$(TEMP_FILES_DIR)\$(ConfigurationName)"
|
|
176
|
+
ConfigurationType="4"
|
|
177
|
+
InheritedPropertySheets=".\Rhoconnect-client.vsprops"
|
|
178
|
+
CharacterSet="1"
|
|
179
|
+
>
|
|
180
|
+
<Tool
|
|
181
|
+
Name="VCPreBuildEventTool"
|
|
182
|
+
/>
|
|
183
|
+
<Tool
|
|
184
|
+
Name="VCCustomBuildTool"
|
|
185
|
+
/>
|
|
186
|
+
<Tool
|
|
187
|
+
Name="VCXMLDataGeneratorTool"
|
|
188
|
+
/>
|
|
189
|
+
<Tool
|
|
190
|
+
Name="VCWebServiceProxyGeneratorTool"
|
|
191
|
+
/>
|
|
192
|
+
<Tool
|
|
193
|
+
Name="VCMIDLTool"
|
|
194
|
+
TargetEnvironment="1"
|
|
195
|
+
/>
|
|
196
|
+
<Tool
|
|
197
|
+
Name="VCCLCompilerTool"
|
|
198
|
+
ExecutionBucket="7"
|
|
199
|
+
Optimization="0"
|
|
200
|
+
AdditionalIncludeDirectories=""$(RHO_ROOT)\platform\shared\sync";"$(RHO_ROOT)\platform\shared\ruby\wince";"$(RHO_ROOT)\platform\shared\ruby\include";"$(RHO_ROOT)\platform\shared";"$(RHO_ROOT)\platform\shared\common";..\..\shared;"$(RHO_ROOT)\lib\commonAPI\coreapi\ext\shared""
|
|
201
|
+
PreprocessorDefinitions="OS_PLATFORM_MOTCE=5;_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
|
202
|
+
MinimalRebuild="true"
|
|
203
|
+
RuntimeLibrary="1"
|
|
204
|
+
UsePrecompiledHeader="0"
|
|
205
|
+
WarningLevel="3"
|
|
206
|
+
DebugInformationFormat="3"
|
|
207
|
+
/>
|
|
208
|
+
<Tool
|
|
209
|
+
Name="VCManagedResourceCompilerTool"
|
|
210
|
+
/>
|
|
211
|
+
<Tool
|
|
212
|
+
Name="VCResourceCompilerTool"
|
|
213
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
|
214
|
+
Culture="1033"
|
|
215
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
|
216
|
+
/>
|
|
217
|
+
<Tool
|
|
218
|
+
Name="VCPreLinkEventTool"
|
|
219
|
+
/>
|
|
220
|
+
<Tool
|
|
221
|
+
Name="VCLibrarianTool"
|
|
222
|
+
AdditionalOptions=" /subsystem:windowsce,5.00"
|
|
223
|
+
OutputFile="$(OutDir)/Rhoconnect-client.lib"
|
|
224
|
+
/>
|
|
225
|
+
<Tool
|
|
226
|
+
Name="VCALinkTool"
|
|
227
|
+
/>
|
|
228
|
+
<Tool
|
|
229
|
+
Name="VCXDCMakeTool"
|
|
230
|
+
/>
|
|
231
|
+
<Tool
|
|
232
|
+
Name="VCBscMakeTool"
|
|
233
|
+
/>
|
|
234
|
+
<Tool
|
|
235
|
+
Name="VCFxCopTool"
|
|
236
|
+
/>
|
|
237
|
+
<Tool
|
|
238
|
+
Name="VCCodeSignTool"
|
|
239
|
+
/>
|
|
240
|
+
<Tool
|
|
241
|
+
Name="VCPostBuildEventTool"
|
|
242
|
+
/>
|
|
243
|
+
<DeploymentTool
|
|
244
|
+
ForceDirty="-1"
|
|
245
|
+
RemoteDirectory=""
|
|
246
|
+
RegisterOutput="0"
|
|
247
|
+
AdditionalFiles=""
|
|
248
|
+
/>
|
|
249
|
+
<DebuggerTool
|
|
250
|
+
/>
|
|
251
|
+
</Configuration>
|
|
252
|
+
<Configuration
|
|
253
|
+
Name="Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
|
|
254
|
+
OutputDirectory="$(RHO_ROOT)\Platform\wm\Bin\$(PlatformName)\Rhodes\$(ConfigurationName)"
|
|
255
|
+
IntermediateDirectory="$(TEMP_FILES_DIR)\$(ConfigurationName)"
|
|
256
|
+
ConfigurationType="4"
|
|
257
|
+
InheritedPropertySheets=".\Rhoconnect-client.vsprops"
|
|
258
|
+
CharacterSet="1"
|
|
259
|
+
>
|
|
260
|
+
<Tool
|
|
261
|
+
Name="VCPreBuildEventTool"
|
|
262
|
+
/>
|
|
263
|
+
<Tool
|
|
264
|
+
Name="VCCustomBuildTool"
|
|
265
|
+
/>
|
|
266
|
+
<Tool
|
|
267
|
+
Name="VCXMLDataGeneratorTool"
|
|
268
|
+
/>
|
|
269
|
+
<Tool
|
|
270
|
+
Name="VCWebServiceProxyGeneratorTool"
|
|
271
|
+
/>
|
|
272
|
+
<Tool
|
|
273
|
+
Name="VCMIDLTool"
|
|
274
|
+
TargetEnvironment="1"
|
|
275
|
+
/>
|
|
276
|
+
<Tool
|
|
277
|
+
Name="VCCLCompilerTool"
|
|
278
|
+
ExecutionBucket="7"
|
|
279
|
+
Optimization="0"
|
|
280
|
+
AdditionalIncludeDirectories=""$(RHO_ROOT)\platform\shared\sync";"$(RHO_ROOT)\platform\shared\ruby\wince";"$(RHO_ROOT)\platform\shared\ruby\include";"$(RHO_ROOT)\platform\shared";"$(RHO_ROOT)\platform\shared\common";..\..\shared;"$(RHO_ROOT)\lib\commonAPI\coreapi\ext\shared""
|
|
281
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
|
282
|
+
MinimalRebuild="true"
|
|
283
|
+
RuntimeLibrary="1"
|
|
284
|
+
UsePrecompiledHeader="0"
|
|
285
|
+
WarningLevel="3"
|
|
286
|
+
DebugInformationFormat="3"
|
|
287
|
+
/>
|
|
288
|
+
<Tool
|
|
289
|
+
Name="VCManagedResourceCompilerTool"
|
|
290
|
+
/>
|
|
291
|
+
<Tool
|
|
292
|
+
Name="VCResourceCompilerTool"
|
|
293
|
+
PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
|
294
|
+
Culture="1033"
|
|
295
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
|
296
|
+
/>
|
|
297
|
+
<Tool
|
|
298
|
+
Name="VCPreLinkEventTool"
|
|
299
|
+
/>
|
|
300
|
+
<Tool
|
|
301
|
+
Name="VCLibrarianTool"
|
|
302
|
+
AdditionalOptions=" /subsystem:windowsce,5.02"
|
|
303
|
+
OutputFile="$(OutDir)/Rhoconnect-client.lib"
|
|
304
|
+
/>
|
|
305
|
+
<Tool
|
|
306
|
+
Name="VCALinkTool"
|
|
307
|
+
/>
|
|
308
|
+
<Tool
|
|
309
|
+
Name="VCXDCMakeTool"
|
|
310
|
+
/>
|
|
311
|
+
<Tool
|
|
312
|
+
Name="VCBscMakeTool"
|
|
313
|
+
/>
|
|
314
|
+
<Tool
|
|
315
|
+
Name="VCFxCopTool"
|
|
316
|
+
/>
|
|
317
|
+
<Tool
|
|
318
|
+
Name="VCCodeSignTool"
|
|
319
|
+
/>
|
|
320
|
+
<Tool
|
|
321
|
+
Name="VCPostBuildEventTool"
|
|
322
|
+
/>
|
|
323
|
+
<DeploymentTool
|
|
324
|
+
ForceDirty="-1"
|
|
325
|
+
RemoteDirectory=""
|
|
326
|
+
RegisterOutput="0"
|
|
327
|
+
AdditionalFiles=""
|
|
328
|
+
/>
|
|
329
|
+
<DebuggerTool
|
|
330
|
+
/>
|
|
331
|
+
</Configuration>
|
|
332
|
+
<Configuration
|
|
333
|
+
Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)"
|
|
334
|
+
OutputDirectory="$(RHO_ROOT)\Platform\wm\Bin\$(PlatformName)\Rhodes\$(ConfigurationName)"
|
|
335
|
+
IntermediateDirectory="$(TEMP_FILES_DIR)\$(ConfigurationName)"
|
|
336
|
+
ConfigurationType="4"
|
|
337
|
+
InheritedPropertySheets=".\Rhoconnect-client.vsprops"
|
|
338
|
+
CharacterSet="1"
|
|
339
|
+
>
|
|
340
|
+
<Tool
|
|
341
|
+
Name="VCPreBuildEventTool"
|
|
342
|
+
/>
|
|
343
|
+
<Tool
|
|
344
|
+
Name="VCCustomBuildTool"
|
|
345
|
+
/>
|
|
346
|
+
<Tool
|
|
347
|
+
Name="VCXMLDataGeneratorTool"
|
|
348
|
+
/>
|
|
349
|
+
<Tool
|
|
350
|
+
Name="VCWebServiceProxyGeneratorTool"
|
|
351
|
+
/>
|
|
352
|
+
<Tool
|
|
353
|
+
Name="VCMIDLTool"
|
|
354
|
+
/>
|
|
355
|
+
<Tool
|
|
356
|
+
Name="VCCLCompilerTool"
|
|
357
|
+
ExecutionBucket="7"
|
|
358
|
+
Optimization="2"
|
|
359
|
+
AdditionalIncludeDirectories=""$(RHO_ROOT)\platform\shared\sync";"$(RHO_ROOT)\platform\shared\ruby\wince";"$(RHO_ROOT)\platform\shared\ruby\include";"$(RHO_ROOT)\platform\shared";"$(RHO_ROOT)\platform\shared\common";..\..\shared;"$(RHO_ROOT)\lib\commonAPI\coreapi\ext\shared""
|
|
360
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
|
361
|
+
RuntimeLibrary="0"
|
|
362
|
+
UsePrecompiledHeader="0"
|
|
363
|
+
WarningLevel="3"
|
|
364
|
+
DebugInformationFormat="3"
|
|
365
|
+
/>
|
|
366
|
+
<Tool
|
|
367
|
+
Name="VCManagedResourceCompilerTool"
|
|
368
|
+
/>
|
|
369
|
+
<Tool
|
|
370
|
+
Name="VCResourceCompilerTool"
|
|
371
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
|
372
|
+
Culture="1033"
|
|
373
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
|
374
|
+
/>
|
|
375
|
+
<Tool
|
|
376
|
+
Name="VCPreLinkEventTool"
|
|
377
|
+
/>
|
|
378
|
+
<Tool
|
|
379
|
+
Name="VCLibrarianTool"
|
|
380
|
+
AdditionalOptions=" /subsystem:windowsce,5.02"
|
|
381
|
+
OutputFile="$(OutDir)/Rhoconnect-client.lib"
|
|
382
|
+
/>
|
|
383
|
+
<Tool
|
|
384
|
+
Name="VCALinkTool"
|
|
385
|
+
/>
|
|
386
|
+
<Tool
|
|
387
|
+
Name="VCXDCMakeTool"
|
|
388
|
+
/>
|
|
389
|
+
<Tool
|
|
390
|
+
Name="VCBscMakeTool"
|
|
391
|
+
/>
|
|
392
|
+
<Tool
|
|
393
|
+
Name="VCFxCopTool"
|
|
394
|
+
/>
|
|
395
|
+
<Tool
|
|
396
|
+
Name="VCCodeSignTool"
|
|
397
|
+
/>
|
|
398
|
+
<Tool
|
|
399
|
+
Name="VCPostBuildEventTool"
|
|
400
|
+
/>
|
|
401
|
+
<DeploymentTool
|
|
402
|
+
ForceDirty="-1"
|
|
403
|
+
RemoteDirectory=""
|
|
404
|
+
RegisterOutput="0"
|
|
405
|
+
AdditionalFiles=""
|
|
406
|
+
/>
|
|
407
|
+
<DebuggerTool
|
|
408
|
+
/>
|
|
409
|
+
</Configuration>
|
|
410
|
+
<Configuration
|
|
411
|
+
Name="Release|Win32"
|
|
412
|
+
OutputDirectory="$(RHO_ROOT)\Platform\wm\Bin\$(PlatformName)\Rhodes\$(ConfigurationName)"
|
|
413
|
+
IntermediateDirectory="$(TEMP_FILES_DIR)\$(ConfigurationName)"
|
|
414
|
+
ConfigurationType="4"
|
|
415
|
+
InheritedPropertySheets=".\Rhoconnect-client.vsprops"
|
|
416
|
+
CharacterSet="1"
|
|
417
|
+
>
|
|
418
|
+
<Tool
|
|
419
|
+
Name="VCPreBuildEventTool"
|
|
420
|
+
/>
|
|
421
|
+
<Tool
|
|
422
|
+
Name="VCCustomBuildTool"
|
|
423
|
+
/>
|
|
424
|
+
<Tool
|
|
425
|
+
Name="VCXMLDataGeneratorTool"
|
|
426
|
+
/>
|
|
427
|
+
<Tool
|
|
428
|
+
Name="VCWebServiceProxyGeneratorTool"
|
|
429
|
+
/>
|
|
430
|
+
<Tool
|
|
431
|
+
Name="VCMIDLTool"
|
|
432
|
+
/>
|
|
433
|
+
<Tool
|
|
434
|
+
Name="VCCLCompilerTool"
|
|
435
|
+
Optimization="2"
|
|
436
|
+
AdditionalIncludeDirectories=""$(RHO_ROOT)\platform\shared\sync";"$(RHO_ROOT)\platform\shared\ruby\win32";"$(RHO_ROOT)\platform\shared\ruby\include";"$(RHO_ROOT)\platform\shared";"$(RHO_ROOT)\platform\shared\common";..\..\shared;"$(RHO_ROOT)\lib\commonAPI\coreapi\ext\shared""
|
|
437
|
+
PreprocessorDefinitions="NDEBUG;WIN32;WINDOWS;_LIB;_UNICODE;UNICODE"
|
|
438
|
+
RuntimeLibrary="0"
|
|
439
|
+
UsePrecompiledHeader="0"
|
|
440
|
+
WarningLevel="3"
|
|
441
|
+
DebugInformationFormat="3"
|
|
442
|
+
/>
|
|
443
|
+
<Tool
|
|
444
|
+
Name="VCManagedResourceCompilerTool"
|
|
445
|
+
/>
|
|
446
|
+
<Tool
|
|
447
|
+
Name="VCResourceCompilerTool"
|
|
448
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
|
449
|
+
Culture="1033"
|
|
450
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
|
451
|
+
/>
|
|
452
|
+
<Tool
|
|
453
|
+
Name="VCPreLinkEventTool"
|
|
454
|
+
/>
|
|
455
|
+
<Tool
|
|
456
|
+
Name="VCLibrarianTool"
|
|
457
|
+
OutputFile="$(OutDir)/Rhoconnect-client.lib"
|
|
458
|
+
/>
|
|
459
|
+
<Tool
|
|
460
|
+
Name="VCALinkTool"
|
|
461
|
+
/>
|
|
462
|
+
<Tool
|
|
463
|
+
Name="VCXDCMakeTool"
|
|
464
|
+
/>
|
|
465
|
+
<Tool
|
|
466
|
+
Name="VCBscMakeTool"
|
|
467
|
+
/>
|
|
468
|
+
<Tool
|
|
469
|
+
Name="VCFxCopTool"
|
|
470
|
+
/>
|
|
471
|
+
<Tool
|
|
472
|
+
Name="VCPostBuildEventTool"
|
|
473
|
+
/>
|
|
474
|
+
</Configuration>
|
|
475
|
+
<Configuration
|
|
476
|
+
Name="Release|MC3000c50b (ARMV4I)"
|
|
477
|
+
OutputDirectory="$(RHO_ROOT)\Platform\wm\Bin\$(PlatformName)\Rhodes\$(ConfigurationName)"
|
|
478
|
+
IntermediateDirectory="$(TEMP_FILES_DIR)\$(ConfigurationName)"
|
|
479
|
+
ConfigurationType="4"
|
|
480
|
+
InheritedPropertySheets=".\Rhoconnect-client.vsprops"
|
|
481
|
+
CharacterSet="1"
|
|
482
|
+
>
|
|
483
|
+
<Tool
|
|
484
|
+
Name="VCPreBuildEventTool"
|
|
485
|
+
/>
|
|
486
|
+
<Tool
|
|
487
|
+
Name="VCCustomBuildTool"
|
|
488
|
+
/>
|
|
489
|
+
<Tool
|
|
490
|
+
Name="VCXMLDataGeneratorTool"
|
|
491
|
+
/>
|
|
492
|
+
<Tool
|
|
493
|
+
Name="VCWebServiceProxyGeneratorTool"
|
|
494
|
+
/>
|
|
495
|
+
<Tool
|
|
496
|
+
Name="VCMIDLTool"
|
|
497
|
+
TargetEnvironment="1"
|
|
498
|
+
/>
|
|
499
|
+
<Tool
|
|
500
|
+
Name="VCCLCompilerTool"
|
|
501
|
+
ExecutionBucket="7"
|
|
502
|
+
Optimization="2"
|
|
503
|
+
AdditionalIncludeDirectories=""$(RHO_ROOT)\platform\shared\sync";"$(RHO_ROOT)\platform\shared\ruby\wince";"$(RHO_ROOT)\platform\shared\ruby\include";"$(RHO_ROOT)\platform\shared";"$(RHO_ROOT)\platform\shared\common";..\..\shared;"$(RHO_ROOT)\lib\commonAPI\coreapi\ext\shared""
|
|
504
|
+
PreprocessorDefinitions="OS_PLATFORM_MOTCE=5;NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
|
505
|
+
RuntimeLibrary="0"
|
|
506
|
+
UsePrecompiledHeader="0"
|
|
507
|
+
WarningLevel="3"
|
|
508
|
+
DebugInformationFormat="3"
|
|
509
|
+
/>
|
|
510
|
+
<Tool
|
|
511
|
+
Name="VCManagedResourceCompilerTool"
|
|
512
|
+
/>
|
|
513
|
+
<Tool
|
|
514
|
+
Name="VCResourceCompilerTool"
|
|
515
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
|
516
|
+
Culture="1033"
|
|
517
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
|
518
|
+
/>
|
|
519
|
+
<Tool
|
|
520
|
+
Name="VCPreLinkEventTool"
|
|
521
|
+
/>
|
|
522
|
+
<Tool
|
|
523
|
+
Name="VCLibrarianTool"
|
|
524
|
+
AdditionalOptions=" /subsystem:windowsce,5.00"
|
|
525
|
+
OutputFile="$(OutDir)/Rhoconnect-client.lib"
|
|
526
|
+
/>
|
|
527
|
+
<Tool
|
|
528
|
+
Name="VCALinkTool"
|
|
529
|
+
/>
|
|
530
|
+
<Tool
|
|
531
|
+
Name="VCXDCMakeTool"
|
|
532
|
+
/>
|
|
533
|
+
<Tool
|
|
534
|
+
Name="VCBscMakeTool"
|
|
535
|
+
/>
|
|
536
|
+
<Tool
|
|
537
|
+
Name="VCFxCopTool"
|
|
538
|
+
/>
|
|
539
|
+
<Tool
|
|
540
|
+
Name="VCCodeSignTool"
|
|
541
|
+
/>
|
|
542
|
+
<Tool
|
|
543
|
+
Name="VCPostBuildEventTool"
|
|
544
|
+
/>
|
|
545
|
+
<DeploymentTool
|
|
546
|
+
ForceDirty="-1"
|
|
547
|
+
RemoteDirectory=""
|
|
548
|
+
RegisterOutput="0"
|
|
549
|
+
AdditionalFiles=""
|
|
550
|
+
/>
|
|
551
|
+
<DebuggerTool
|
|
552
|
+
/>
|
|
553
|
+
</Configuration>
|
|
554
|
+
<Configuration
|
|
555
|
+
Name="Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
|
|
556
|
+
OutputDirectory="$(RHO_ROOT)\Platform\wm\Bin\$(PlatformName)\Rhodes\$(ConfigurationName)"
|
|
557
|
+
IntermediateDirectory="$(TEMP_FILES_DIR)\$(ConfigurationName)"
|
|
558
|
+
ConfigurationType="4"
|
|
559
|
+
InheritedPropertySheets=".\Rhoconnect-client.vsprops"
|
|
560
|
+
CharacterSet="1"
|
|
561
|
+
>
|
|
562
|
+
<Tool
|
|
563
|
+
Name="VCPreBuildEventTool"
|
|
564
|
+
/>
|
|
565
|
+
<Tool
|
|
566
|
+
Name="VCCustomBuildTool"
|
|
567
|
+
/>
|
|
568
|
+
<Tool
|
|
569
|
+
Name="VCXMLDataGeneratorTool"
|
|
570
|
+
/>
|
|
571
|
+
<Tool
|
|
572
|
+
Name="VCWebServiceProxyGeneratorTool"
|
|
573
|
+
/>
|
|
574
|
+
<Tool
|
|
575
|
+
Name="VCMIDLTool"
|
|
576
|
+
TargetEnvironment="1"
|
|
577
|
+
/>
|
|
578
|
+
<Tool
|
|
579
|
+
Name="VCCLCompilerTool"
|
|
580
|
+
ExecutionBucket="7"
|
|
581
|
+
Optimization="2"
|
|
582
|
+
AdditionalIncludeDirectories=""$(RHO_ROOT)\platform\shared\sync";"$(RHO_ROOT)\platform\shared\ruby\wince";"$(RHO_ROOT)\platform\shared\ruby\include";"$(RHO_ROOT)\platform\shared";"$(RHO_ROOT)\platform\shared\common";..\..\shared;"$(RHO_ROOT)\lib\commonAPI\coreapi\ext\shared""
|
|
583
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;_LIB;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
|
|
584
|
+
RuntimeLibrary="0"
|
|
585
|
+
UsePrecompiledHeader="0"
|
|
586
|
+
WarningLevel="3"
|
|
587
|
+
DebugInformationFormat="3"
|
|
588
|
+
/>
|
|
589
|
+
<Tool
|
|
590
|
+
Name="VCManagedResourceCompilerTool"
|
|
591
|
+
/>
|
|
592
|
+
<Tool
|
|
593
|
+
Name="VCResourceCompilerTool"
|
|
594
|
+
PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES)"
|
|
595
|
+
Culture="1033"
|
|
596
|
+
AdditionalIncludeDirectories="$(IntDir)"
|
|
597
|
+
/>
|
|
598
|
+
<Tool
|
|
599
|
+
Name="VCPreLinkEventTool"
|
|
600
|
+
/>
|
|
601
|
+
<Tool
|
|
602
|
+
Name="VCLibrarianTool"
|
|
603
|
+
AdditionalOptions=" /subsystem:windowsce,5.02"
|
|
604
|
+
OutputFile="$(OutDir)/Rhoconnect-client.lib"
|
|
605
|
+
/>
|
|
606
|
+
<Tool
|
|
607
|
+
Name="VCALinkTool"
|
|
608
|
+
/>
|
|
609
|
+
<Tool
|
|
610
|
+
Name="VCXDCMakeTool"
|
|
611
|
+
/>
|
|
612
|
+
<Tool
|
|
613
|
+
Name="VCBscMakeTool"
|
|
614
|
+
/>
|
|
615
|
+
<Tool
|
|
616
|
+
Name="VCFxCopTool"
|
|
617
|
+
/>
|
|
618
|
+
<Tool
|
|
619
|
+
Name="VCCodeSignTool"
|
|
620
|
+
/>
|
|
621
|
+
<Tool
|
|
622
|
+
Name="VCPostBuildEventTool"
|
|
623
|
+
/>
|
|
624
|
+
<DeploymentTool
|
|
625
|
+
ForceDirty="-1"
|
|
626
|
+
RemoteDirectory=""
|
|
627
|
+
RegisterOutput="0"
|
|
628
|
+
AdditionalFiles=""
|
|
629
|
+
/>
|
|
630
|
+
<DebuggerTool
|
|
631
|
+
/>
|
|
632
|
+
</Configuration>
|
|
633
|
+
</Configurations>
|
|
634
|
+
<References>
|
|
635
|
+
</References>
|
|
636
|
+
<Files>
|
|
637
|
+
<Filter
|
|
638
|
+
Name="Source Files"
|
|
639
|
+
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
|
640
|
+
UniqueIdentifier="{9FC737FA-C7A5-4376-A066-2A32D752A2FF}"
|
|
641
|
+
>
|
|
642
|
+
<File
|
|
643
|
+
RelativePath="..\..\shared\sync\ClientRegister.cpp"
|
|
644
|
+
>
|
|
645
|
+
</File>
|
|
646
|
+
<File
|
|
647
|
+
RelativePath="..\..\shared\sync\ClientRegister.h"
|
|
648
|
+
>
|
|
649
|
+
</File>
|
|
650
|
+
<File
|
|
651
|
+
RelativePath="..\..\shared\sync\ISyncProtocol.h"
|
|
652
|
+
>
|
|
653
|
+
</File>
|
|
654
|
+
<File
|
|
655
|
+
RelativePath="..\..\shared\sync\SyncEngine.cpp"
|
|
656
|
+
>
|
|
657
|
+
</File>
|
|
658
|
+
<File
|
|
659
|
+
RelativePath="..\..\shared\sync\SyncEngine.h"
|
|
660
|
+
>
|
|
661
|
+
</File>
|
|
662
|
+
<File
|
|
663
|
+
RelativePath="..\..\shared\sync\SyncNotify.cpp"
|
|
664
|
+
>
|
|
665
|
+
</File>
|
|
666
|
+
<File
|
|
667
|
+
RelativePath="..\..\shared\sync\SyncNotify.h"
|
|
668
|
+
>
|
|
669
|
+
</File>
|
|
670
|
+
<File
|
|
671
|
+
RelativePath="..\..\shared\sync\SyncProtocol_3.h"
|
|
672
|
+
>
|
|
673
|
+
</File>
|
|
674
|
+
<File
|
|
675
|
+
RelativePath="..\..\shared\sync\SyncSource.cpp"
|
|
676
|
+
>
|
|
677
|
+
</File>
|
|
678
|
+
<File
|
|
679
|
+
RelativePath="..\..\shared\sync\SyncSource.h"
|
|
680
|
+
>
|
|
681
|
+
</File>
|
|
682
|
+
<File
|
|
683
|
+
RelativePath="..\..\shared\sync\SyncThread.cpp"
|
|
684
|
+
>
|
|
685
|
+
</File>
|
|
686
|
+
<File
|
|
687
|
+
RelativePath="..\..\shared\sync\SyncThread.h"
|
|
688
|
+
>
|
|
689
|
+
</File>
|
|
690
|
+
</Filter>
|
|
691
|
+
<Filter
|
|
692
|
+
Name="shared"
|
|
693
|
+
>
|
|
694
|
+
<File
|
|
695
|
+
RelativePath="..\..\shared\initRhoconnectClient.cpp"
|
|
696
|
+
>
|
|
697
|
+
</File>
|
|
698
|
+
<File
|
|
699
|
+
RelativePath="..\..\shared\rhoconnectclient.c"
|
|
700
|
+
>
|
|
701
|
+
</File>
|
|
702
|
+
<File
|
|
703
|
+
RelativePath="..\..\shared\RhoConnectClientImpl.cpp"
|
|
704
|
+
>
|
|
705
|
+
</File>
|
|
706
|
+
<File
|
|
707
|
+
RelativePath="..\..\shared\RhoConnectClientImpl.h"
|
|
708
|
+
>
|
|
709
|
+
</File>
|
|
710
|
+
<File
|
|
711
|
+
RelativePath="..\..\shared\RhoConnectClientSingletonImpl.h"
|
|
712
|
+
>
|
|
713
|
+
</File>
|
|
714
|
+
<Filter
|
|
715
|
+
Name="generated"
|
|
716
|
+
>
|
|
717
|
+
<File
|
|
718
|
+
RelativePath="..\..\shared\generated\rhoconnectclient_api_init.cpp"
|
|
719
|
+
>
|
|
720
|
+
</File>
|
|
721
|
+
<File
|
|
722
|
+
RelativePath="..\..\shared\generated\rhoconnectclient_js_api.cpp"
|
|
723
|
+
>
|
|
724
|
+
</File>
|
|
725
|
+
<File
|
|
726
|
+
RelativePath="..\..\shared\generated\rhoconnectclient_ruby_api.c"
|
|
727
|
+
>
|
|
728
|
+
</File>
|
|
729
|
+
<Filter
|
|
730
|
+
Name="cpp"
|
|
731
|
+
>
|
|
732
|
+
<File
|
|
733
|
+
RelativePath="..\..\shared\generated\cpp\IRhoConnectClient.h"
|
|
734
|
+
>
|
|
735
|
+
</File>
|
|
736
|
+
<File
|
|
737
|
+
RelativePath="..\..\shared\generated\cpp\RhoConnectClient_js_wrap.cpp"
|
|
738
|
+
>
|
|
739
|
+
</File>
|
|
740
|
+
<File
|
|
741
|
+
RelativePath="..\..\shared\generated\cpp\RhoConnectClient_ruby_wrap.cpp"
|
|
742
|
+
>
|
|
743
|
+
</File>
|
|
744
|
+
<File
|
|
745
|
+
RelativePath="..\..\shared\generated\cpp\RhoConnectClientBase.cpp"
|
|
746
|
+
>
|
|
747
|
+
</File>
|
|
748
|
+
<File
|
|
749
|
+
RelativePath="..\..\shared\generated\cpp\RhoConnectClientBase.h"
|
|
750
|
+
>
|
|
751
|
+
</File>
|
|
752
|
+
</Filter>
|
|
753
|
+
</Filter>
|
|
754
|
+
</Filter>
|
|
755
|
+
<File
|
|
756
|
+
RelativePath="..\..\..\RhoConnectClient.rb"
|
|
757
|
+
>
|
|
758
|
+
</File>
|
|
759
|
+
<File
|
|
760
|
+
RelativePath="..\..\RhoConnectClient.xml"
|
|
761
|
+
>
|
|
762
|
+
<FileConfiguration
|
|
763
|
+
Name="Debug|Win32"
|
|
764
|
+
ExcludedFromBuild="true"
|
|
765
|
+
>
|
|
766
|
+
<Tool
|
|
767
|
+
Name="VCCustomBuildTool"
|
|
768
|
+
/>
|
|
769
|
+
</FileConfiguration>
|
|
770
|
+
</File>
|
|
771
|
+
</Files>
|
|
772
|
+
<Globals>
|
|
773
|
+
</Globals>
|
|
774
|
+
</VisualStudioProject>
|