diff --git a/.github/workflows/build_on_push.yml b/.github/workflows/build_on_push.yml new file mode 100644 index 0000000..f80477b --- /dev/null +++ b/.github/workflows/build_on_push.yml @@ -0,0 +1,116 @@ + + +# Workflow to automatically compile a Linux/Windows library on commit/push +name: Build on push + +# Controls when the action will run. Triggers the workflow on push or pull request +# events, but only for the master branch we'll create .zip files +on: + [push, pull_request] + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This job builds the plugin for our target platforms + build: + name: Building for ${{ matrix.platform }} (${{ matrix.os }}) + runs-on: ${{ matrix.os }} + strategy: + fail-fast: true + matrix: + include: + # faster testing by disabling the others... + - os: macos-latest + platform: macos + - os: windows-latest + platform: windows + + steps: + - name: Setup actions + uses: actions/checkout@v2 + with: + submodules: 'recursive' + + - name: Add msbuild to PATH (Windows) + uses: microsoft/setup-msbuild@v1.1 + with: + msbuild-architecture: x64 + if: matrix.platform == 'windows' + + - name: Get SDK (MacOS) + run: | + curl -O "ftp://ftp.omnis.net/OmnisStudio/Studio102_31315/SDK/osx64/OSX-SDK-10.2-31315.dmg" + hdiutil attach OSX-SDK-10.2-31315.dmg + cp -a /volumes/OSX-SDK-10.2-31315/OSX-SDK-10.2-31315/. thirdparty/omnis.sdk/mac/ + hdiutil detach /volumes/OSX-SDK-10.2-31315 + if: matrix.platform == 'macos' + + - name: Get SDK (Windows) + run: | + curl -O "ftp://ftp.omnis.net/OmnisStudio/Studio102_31315/SDK/windows/Windows-SDK-10.2-31315-x86-x64.zip" + tar -xf Windows-SDK-10.2-31315-x86-x64.zip + xcopy /E /I Windows-SDK-10.2-31315-x86-x64\* thirdparty\omnis.sdk\win\ + if: matrix.platform == 'windows' + + - name: Build (MacOS) + run: | + xcodebuild -project oExample.xcodeproj build + if: matrix.platform == 'macos' + + - name: Build (Windows) + run: | + MSBuild example.vcxproj /property:Platform=x64 /property:Configuration="UNICODE Release" + dir + if: matrix.platform == 'windows' + + - name: Upload build files (artifacts) (MacOS) + uses: actions/upload-artifact@v2 + with: + name: xcomp-macos + path: | + _OSXUnicode + if: matrix.platform == 'macos' + + - name: Upload build files (artifacts) (Windows) + uses: actions/upload-artifact@v2 + with: + name: xcomp-windows + path: | + URel64/example.dll + if: matrix.platform == 'windows' + +# This job collects the build output and assembles the final asset (artifact) + asset: + name: Assembling the asset (artifact) + runs-on: ubuntu-20.04 + needs: build + if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + - uses: actions/checkout@v2 + with: + repository: 'GodotVR/godot_openxr' + path: godot_openxr + - name: Download all workflow run artifacts + uses: actions/download-artifact@v2 + - name: Copy files to destination + run: | + mkdir oExample + mkdir oExample/macos + mkdir oExample/windows + cp -a xcomp-macos/. oExample/macos/ + cp xcomp-windows/example.dll oExample/windows/ + - name: Get tag name + run: | + echo "GITHUB_SHA_SHORT=$(echo ${GITHUB_REF##*/})" >> $GITHUB_ENV + if: startsWith(github.ref, 'refs/tags') + - name: Zip asset + run: | + zip -qq -r oExample.zip oExample/. + - name: Create and upload asset + uses: ncipollo/release-action@v1 + with: + allowUpdates: true + artifacts: "oExample.zip" + token: ${{ secrets.GITHUB_TOKEN }} + diff --git a/.github/workflows/scripts/clang_format.sh b/.github/workflows/scripts/clang_format.sh index f6bda4c..33a795d 100644 --- a/.github/workflows/scripts/clang_format.sh +++ b/.github/workflows/scripts/clang_format.sh @@ -16,6 +16,8 @@ while IFS= read -rd '' f; do continue elif [[ "$f" == "examples"* ]]; then continue + elif [[ "$f" == "thirdparty"* ]]; then + continue fi for extension in ${CLANG_FORMAT_FILE_EXTS[@]}; do if [[ "$f" == *"$extension" ]]; then diff --git a/.gitignore b/.gitignore index 07e6b08..d38d607 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,20 @@ -*.ncb -/*.suo -/*.sln -/*.user -/*.sdf +# mac +_OSXUnicodeDbg +_OSXUnicode +UnicodeCore.build +oExample.xcodeproj/* +!oExample.xcodeproj/project.pbxproj +.DS_Store + +#windows Release UDeb URel URel64 UDeb64 -UnicodeCore.build -build .vs -.DS_Store +*.ncb +/*.suo +/*.sln +/*.user +/*.sdf diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..d751f33 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "thirdparty/omnis.xcomp.framework"] + path = thirdparty/omnis.xcomp.framework + url = https://github.com/BastiaanOlij/omnis.xcomp.framework diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f79eb6..7bf2156 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog Notable changes to versions in this repository +## ???? +- Moving build system to Studio 10.2 +- Removed all build systems + ## 2019-02-04 - Making this work on Studio 10.0 diff --git a/English.lproj/Bitmap.strings b/English.lproj/Bitmap.strings new file mode 100644 index 0000000..0110b68 --- /dev/null +++ b/English.lproj/Bitmap.strings @@ -0,0 +1,3 @@ +{ +"COMP_RES_1" = "OEXAMPLE.PNG"; +} diff --git a/English.lproj/Localizable.strings b/English.lproj/Localizable.strings new file mode 100644 index 0000000..e1f05d8 --- /dev/null +++ b/English.lproj/Localizable.strings @@ -0,0 +1,11 @@ +{ +"COMP_RES_1000" = "Example Library"; +"COMP_RES_2000" = "Example Object"; +"COMP_RES_2100" = "Example NVObject"; +"COMP_RES_7000" = "test:Test value"; +"COMP_RES_8000" = "$testMethod:$testMethod() Just a test method that returns a test string."; +"COMP_RES_8100" = "$nvTestMethod:$nvTestMethod() Just a test method that returns a test string."; +"COMP_RES_8101" = "$testCallback:$testCallback() Just a test mehtod that calls back into Omnis."; +"COMP_RES_8102" = "$evCallback:$evCallback() this method gets called by $testCallback."; +"COMP_RES_31000" = "FrameworkWndProc"; +} diff --git a/English.lproj/OEXAMPLE.PNG b/English.lproj/OEXAMPLE.PNG new file mode 100644 index 0000000..40a743f Binary files /dev/null and b/English.lproj/OEXAMPLE.PNG differ diff --git a/README.md b/README.md index 8af7eef..216638b 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,7 @@ omnis.xcomp.example Example xcomp made with omnis.xcomp.framework -Directories are setup relative and assume the framework is installed within the Omnis SDK folders: -- Omnis SDK - - complib - - omnis.xcomp.framework - - omnis.xcomp.example - - ... +Our framework is included as a submodule so make sure to clone recursively or run `git submodule update --init --recursive` Compiling under Mac OS X ======================== diff --git a/example_OS10.0.vcxproj b/example.vcxproj similarity index 84% rename from example_OS10.0.vcxproj rename to example.vcxproj index 9364f61..2eb2fdb 100644 --- a/example_OS10.0.vcxproj +++ b/example.vcxproj @@ -20,27 +20,27 @@ {D377AD87-8C8E-47F3-987D-428CF82E73FF} - 10.0.15063.0 + 10.0 DynamicLibrary - v141 + v142 false DynamicLibrary - v141 + v142 false DynamicLibrary - v141 + v142 false DynamicLibrary - v141 + v142 false @@ -98,7 +98,7 @@ MinSpace OnlyExplicitInline - ..\complib;%(AdditionalIncludeDirectories) + thirdparty\omnis.sdk\win\complib;%(AdditionalIncludeDirectories) NDEBUG;WIN32;_WINDOWS;iswin32;isXCOMPLIB;NO_STRICT;isunicode;UNICODE;_CRT_SECURE_NO_DEPRECATE;_CRT_NON_CONFORMING_SWPRINTFS;_CRT_NONSTDC_NO_DEPRECATE;_UNICODE;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -120,7 +120,7 @@ odbc32.lib;odbccp32.lib;omnisu.lib;%(AdditionalDependencies) .\URel/generic.dll true - ..\ulibs;%(AdditionalLibraryDirectories) + thirdparty\omnis.sdk\win\ulibs;%(AdditionalLibraryDirectories) libc.lib;%(IgnoreSpecificDefaultLibraries) .\Generic.def .\URel/GENERIC.pdb @@ -147,7 +147,7 @@ MinSpace OnlyExplicitInline - ..\complib;..\omnis.xcomp.framework;%(AdditionalIncludeDirectories) + thirdparty\omnis.sdk\win\complib;thirdparty\omnis.xcomp.framework;%(AdditionalIncludeDirectories) NDEBUG;is64bit;_WINDOWS;iswin32;isXCOMPLIB;NO_STRICT;isunicode;UNICODE;_CRT_SECURE_NO_DEPRECATE;_CRT_NON_CONFORMING_SWPRINTFS;_CRT_NONSTDC_NO_DEPRECATE;_UNICODE;OMNISSDK=100;%(PreprocessorDefinitions) true MultiThreadedDLL @@ -169,7 +169,7 @@ odbc32.lib;odbccp32.lib;omnisu64.lib;%(AdditionalDependencies) .\URel64/example.dll true - ..\ulibs;%(AdditionalLibraryDirectories) + thirdparty\omnis.sdk\win\ulibs;%(AdditionalLibraryDirectories) libc.lib;%(IgnoreSpecificDefaultLibraries) .\example.def .\URel64/example.pdb @@ -195,7 +195,7 @@ Disabled - ..\complib;%(AdditionalIncludeDirectories) + thirdparty\omnis.sdk\win\complib;%(AdditionalIncludeDirectories) _DEBUG;WIN32;_WINDOWS;iswin32;isXCOMPLIB;NO_STRICT;isunicode;_UNICODE;UNICODE;_CRT_SECURE_NO_DEPRECATE;_CRT_NON_CONFORMING_SWPRINTFS;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions) true MultiThreadedDebugDLL @@ -217,7 +217,7 @@ odbc32.lib;odbccp32.lib;omnisu.lib;%(AdditionalDependencies) .\UDeb/generic.dll true - ..\ulibs;%(AdditionalLibraryDirectories) + thirdparty\omnis.sdk\win\ulibs;%(AdditionalLibraryDirectories) libc.lib;%(IgnoreSpecificDefaultLibraries) .\Generic.def true @@ -243,7 +243,7 @@ Disabled - ..\complib;..\omnis.xcomp.framework;%(AdditionalIncludeDirectories) + thirdparty\omnis.sdk\win\complib;thirdparty\omnis.xcomp.framework;%(AdditionalIncludeDirectories) _DEBUG;is64bit;_WINDOWS;iswin32;isXCOMPLIB;NO_STRICT;isunicode;_UNICODE;UNICODE;_CRT_SECURE_NO_DEPRECATE;_CRT_NON_CONFORMING_SWPRINTFS;_CRT_NONSTDC_NO_DEPRECATE;OMNISSDK=100;%(PreprocessorDefinitions) MultiThreadedDebugDLL Default @@ -264,7 +264,7 @@ odbc32.lib;odbccp32.lib;omnisu64.lib;%(AdditionalDependencies) .\UDeb64/example.dll true - ..\ulibs;%(AdditionalLibraryDirectories) + thirdparty\omnis.sdk\win\ulibs;%(AdditionalLibraryDirectories) libc.lib;%(IgnoreSpecificDefaultLibraries) .\example.def true @@ -280,15 +280,15 @@ - - - - - - - - - + + + + + + + + + @@ -303,17 +303,17 @@ - - - - - - - - - - - + + + + + + + + + + + diff --git a/example_OS10.0.vcxproj.filters b/example.vcxproj.filters similarity index 58% rename from example_OS10.0.vcxproj.filters rename to example.vcxproj.filters index 5986325..144e30b 100644 --- a/example_OS10.0.vcxproj.filters +++ b/example.vcxproj.filters @@ -1,31 +1,31 @@  - + omnis.xcomp.framework - + omnis.xcomp.framework - + omnis.xcomp.framework - + omnis.xcomp.framework - + omnis.xcomp.framework - + omnis.xcomp.framework - + omnis.xcomp.framework - + omnis.xcomp.framework - + omnis.xcomp.framework @@ -47,37 +47,37 @@ - + omnis.xcomp.framework - + omnis.xcomp.framework - + omnis.xcomp.framework - + omnis.xcomp.framework - + omnis.xcomp.framework - + omnis.xcomp.framework - + omnis.xcomp.framework - + omnis.xcomp.framework - + omnis.xcomp.framework - + omnis.xcomp.framework - + omnis.xcomp.framework diff --git a/example_OS6.vcproj b/example_OS6.vcproj deleted file mode 100644 index 10360a8..0000000 --- a/example_OS6.vcproj +++ /dev/null @@ -1,355 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/example_OS61.vcxproj b/example_OS61.vcxproj deleted file mode 100644 index 19edf2e..0000000 --- a/example_OS61.vcxproj +++ /dev/null @@ -1,329 +0,0 @@ - - - - - UNICODE Debug - Win32 - - - UNICODE Debug - x64 - - - UNICODE Release - Win32 - - - UNICODE Release - x64 - - - - {D377AD87-8C8E-47F3-987D-428CF82E73FF} - - - - DynamicLibrary - v120 - false - - - DynamicLibrary - v120 - false - - - DynamicLibrary - v120 - false - - - DynamicLibrary - v120 - false - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>11.0.60315.1 - - - .\URel\ - .\URel\ - false - - - false - .\URel64\ - .\URel64\ - - - .\UDeb\ - .\UDeb\ - true - - - true - .\UDeb64\ - .\UDeb64\ - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - .\Release/GENERIC.tlb - - - - MinSpace - OnlyExplicitInline - ..\complib;..\omnis.xcomp.framework;%(AdditionalIncludeDirectories) - OMNISSDK=61;NDEBUG;WIN32;_WINDOWS;iswin32;isXCOMPLIB;NO_STRICT;isunicode;UNICODE;_CRT_SECURE_NO_DEPRECATE;_CRT_NON_CONFORMING_SWPRINTFS;_CRT_NONSTDC_NO_DEPRECATE;_UNICODE;%(PreprocessorDefinitions) - true - MultiThreadedDLL - 2Bytes - true - false - false - .\URel/example.pch - .\URel/ - .\URel/ - .\URel/ - Level3 - true - - - NDEBUG;isunicode;_UNICODE;UNICODE;%(PreprocessorDefinitions) - 0x0809 - - - odbc32.lib;odbccp32.lib;omnisu.lib;%(AdditionalDependencies) - .\URel/example.dll - true - ..\ulibs;%(AdditionalLibraryDirectories) - libc.lib;%(IgnoreSpecificDefaultLibraries) - .\example.def - .\URel/example.pdb - Windows - false - - .\URel/example.lib - MachineX86 - - - true - .\URel/GENERIC.bsc - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - .\Release/GENERIC.tlb - - - - - MinSpace - OnlyExplicitInline - ..\complib;..\omnis.xcomp.framework;%(AdditionalIncludeDirectories) - OMNISSDK=61;NDEBUG;is64bit;_WINDOWS;iswin32;isXCOMPLIB;NO_STRICT;isunicode;UNICODE;_CRT_SECURE_NO_DEPRECATE;_CRT_NON_CONFORMING_SWPRINTFS;_CRT_NONSTDC_NO_DEPRECATE;_UNICODE;%(PreprocessorDefinitions) - true - MultiThreadedDLL - Default - true - false - false - .\URel64/GENERIC.pch - .\URel64/ - .\URel64/ - .\URel64/ - Level3 - true - - - NDEBUG;isunicode;_UNICODE;UNICODE;is64bit;%(PreprocessorDefinitions) - 0x0809 - - - odbc32.lib;odbccp32.lib;omnisu64.lib;%(AdditionalDependencies) - .\URel64/example.dll - true - ..\ulibs;%(AdditionalLibraryDirectories) - libc.lib;%(IgnoreSpecificDefaultLibraries) - .\example.def - .\URel64/example.pdb - Windows - false - - - .\URel64/example.lib - - - true - .\URel64/GENERIC.bsc - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - .\Debug/GENERIC.tlb - - - - Disabled - ..\complib;..\omnis.xcomp.framework;%(AdditionalIncludeDirectories) - OMNISSDK=61;_DEBUG;WIN32;_WINDOWS;iswin32;isXCOMPLIB;NO_STRICT;isunicode;_UNICODE;UNICODE;_CRT_SECURE_NO_DEPRECATE;_CRT_NON_CONFORMING_SWPRINTFS;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions) - true - MultiThreadedDebugDLL - 2Bytes - false - false - .\UDeb/example.pch - .\UDeb/ - .\UDeb/ - .\UDeb/ - Level3 - true - EditAndContinue - - - _DEBUG;isunicode;_UNICODE;UNICODE;%(PreprocessorDefinitions) - 0x0809 - - - odbc32.lib;odbccp32.lib;omnisu.lib;%(AdditionalDependencies) - .\UDeb/example.dll - true - ..\ulibs;%(AdditionalLibraryDirectories) - libc.lib;%(IgnoreSpecificDefaultLibraries) - .\example.def - true - .\UDeb/example.pdb - Windows - false - - .\UDeb/example.lib - MachineX86 - - - true - .\UDeb/GENERIC.bsc - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - .\Debug/GENERIC.tlb - - - - - Disabled - ..\complib;..\omnis.xcomp.framework;%(AdditionalIncludeDirectories) - OMNISSDK=61;_DEBUG;is64bit;_WINDOWS;iswin32;isXCOMPLIB;NO_STRICT;isunicode;_UNICODE;UNICODE;_CRT_SECURE_NO_DEPRECATE;_CRT_NON_CONFORMING_SWPRINTFS;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Default - false - false - .\UDeb64/example.pch - .\UDeb64/ - .\UDeb64/ - .\UDeb64/ - Level3 - true - ProgramDatabase - - - _DEBUG;isunicode;_UNICODE;UNICODE;is64bit;%(PreprocessorDefinitions) - 0x0809 - - - odbc32.lib;odbccp32.lib;omnisu64.lib;%(AdditionalDependencies) - .\UDeb64/example.dll - true - ..\ulibs;%(AdditionalLibraryDirectories) - libc.lib;%(IgnoreSpecificDefaultLibraries) - .\example.def - true - .\UDeb64/example.pdb - Windows - false - - - .\UDeb64/example.lib - - - true - .\UDeb64/GENERIC.bsc - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/example_OS61.vcxproj.filters b/example_OS61.vcxproj.filters deleted file mode 100644 index 9749b17..0000000 --- a/example_OS61.vcxproj.filters +++ /dev/null @@ -1,87 +0,0 @@ - - - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - - - - - - - - - {2c42bdc4-08e2-424d-8f3c-e82304d1f086} - - - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - - - - - - - - - - \ No newline at end of file diff --git a/example_OS61.xcodeproj/project.pbxproj b/example_OS61.xcodeproj/project.pbxproj deleted file mode 100644 index df80c59..0000000 --- a/example_OS61.xcodeproj/project.pbxproj +++ /dev/null @@ -1,501 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 42; - objects = { - -/* Begin PBXAggregateTarget section */ - 96D355F20908DD62006B6436 /* ReleaseBuild */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 96D355F30908DD80006B6436 /* Build configuration list for PBXAggregateTarget "ReleaseBuild" */; - buildPhases = ( - ); - dependencies = ( - 9658838409BC64BB0063770F /* PBXTargetDependency */, - ); - name = ReleaseBuild; - productName = ReleaseBuild; - }; -/* End PBXAggregateTarget section */ - -/* Begin PBXBuildFile section */ - 96CA4E550907E8CC00C234AA /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C167DFE841241C02AAC07 /* InfoPlist.strings */; }; - 96CA4E5A0907E8CC00C234AA /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 08EA7FFBFE8413EDC02AAC07 /* Carbon.framework */; }; - 96CA4E660907EB0700C234AA /* u_complib.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 96CA4E650907EB0700C234AA /* u_complib.framework */; }; - ACDECFCC1B4E0AFC008A730B /* FrameworkWndProc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACDECFB81B4E0AFC008A730B /* FrameworkWndProc.cpp */; }; - ACDECFCD1B4E0AFC008A730B /* oBaseComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACDECFB91B4E0AFC008A730B /* oBaseComponent.cpp */; }; - ACDECFCE1B4E0AFC008A730B /* oBaseNVComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACDECFBB1B4E0AFC008A730B /* oBaseNVComponent.cpp */; }; - ACDECFCF1B4E0AFC008A730B /* oBaseVisComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACDECFBD1B4E0AFC008A730B /* oBaseVisComponent.cpp */; }; - ACDECFD01B4E0AFC008A730B /* oDrawingCanvas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACDECFBF1B4E0AFC008A730B /* oDrawingCanvas.cpp */; }; - ACDECFD11B4E0AFC008A730B /* oRGBAImage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACDECFC21B4E0AFC008A730B /* oRGBAImage.cpp */; }; - ACDECFD21B4E0AFC008A730B /* oUTF8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACDECFC41B4E0AFC008A730B /* oUTF8.cpp */; }; - ACDECFD31B4E0AFC008A730B /* oXCompLib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACDECFC61B4E0AFC008A730B /* oXCompLib.cpp */; }; - ACDECFD41B4E0AFC008A730B /* qString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACDECFC91B4E0AFC008A730B /* qString.cpp */; }; - ACDECFD81B4E0B13008A730B /* oExample.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACDECFD51B4E0B13008A730B /* oExample.cpp */; }; - ACDECFD91B4E0B13008A730B /* example.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACDECFD61B4E0B13008A730B /* example.cpp */; }; - ACDECFDA1B4E0B13008A730B /* oNVExample.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACDECFD71B4E0B13008A730B /* oNVExample.cpp */; }; - ACDECFDF1B4E0CF4008A730B /* oExample.bmp in Resources */ = {isa = PBXBuildFile; fileRef = ACDECFDD1B4E0CF4008A730B /* oExample.bmp */; }; - ACDECFE01B4E0D6D008A730B /* oExample.rc in Resources */ = {isa = PBXBuildFile; fileRef = ACDECFDB1B4E0B2E008A730B /* oExample.rc */; }; -/* End PBXBuildFile section */ - -/* Begin PBXBuildRule section */ - 96CA4E5C0907E8CC00C234AA /* PBXBuildRule */ = { - isa = PBXBuildRule; - compilerSpec = com.apple.compilers.proxy.script; - filePatterns = "*.rc"; - fileType = pattern.proxy; - isEditable = 1; - outputFiles = ( - "$(TEMP_FILE_DIR)/omnisrc/Localizable.strings", - ); - script = "/Developer/Tools/omnisrc.app/Contents/MacOS/omnisrc INPUT_FILE_PATH TEMP_FILE_DIR REZ_SEARCH_PATHS XCOMP\ncp $TEMP_FILE_DIR/omnisrc/xcomp.rsrc $INSTALL_DIR/$CONTENTS_FOLDER_PATH/Resources"; - }; -/* End PBXBuildRule section */ - -/* Begin PBXContainerItemProxy section */ - 9658838309BC64BB0063770F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 089C1669FE841209C02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 96CA4E530907E8CC00C234AA; - remoteInfo = UnicodeCore; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - 089C167EFE841241C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; - 08EA7FFBFE8413EDC02AAC07 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = ""; }; - 96CA4E610907E8CC00C234AA /* oExample.u_xcomp */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = oExample.u_xcomp; sourceTree = BUILT_PRODUCTS_DIR; }; - 96CA4E650907EB0700C234AA /* u_complib.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = u_complib.framework; path = ../complib/u_complib.framework; sourceTree = SOURCE_ROOT; }; - ACDECFB41B4E0AD7008A730B /* oExample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oExample.h; path = Src/oExample.h; sourceTree = ""; }; - ACDECFB51B4E0AD7008A730B /* example.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = example.h; path = Src/example.h; sourceTree = ""; }; - ACDECFB61B4E0AD7008A730B /* oNVExample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oNVExample.h; path = Src/oNVExample.h; sourceTree = ""; }; - ACDECFB81B4E0AFC008A730B /* FrameworkWndProc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = FrameworkWndProc.cpp; path = ../omnis.xcomp.framework/FrameworkWndProc.cpp; sourceTree = ""; }; - ACDECFB91B4E0AFC008A730B /* oBaseComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oBaseComponent.cpp; path = ../omnis.xcomp.framework/oBaseComponent.cpp; sourceTree = ""; }; - ACDECFBA1B4E0AFC008A730B /* oBaseComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oBaseComponent.h; path = ../omnis.xcomp.framework/oBaseComponent.h; sourceTree = ""; }; - ACDECFBB1B4E0AFC008A730B /* oBaseNVComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oBaseNVComponent.cpp; path = ../omnis.xcomp.framework/oBaseNVComponent.cpp; sourceTree = ""; }; - ACDECFBC1B4E0AFC008A730B /* oBaseNVComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oBaseNVComponent.h; path = ../omnis.xcomp.framework/oBaseNVComponent.h; sourceTree = ""; }; - ACDECFBD1B4E0AFC008A730B /* oBaseVisComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oBaseVisComponent.cpp; path = ../omnis.xcomp.framework/oBaseVisComponent.cpp; sourceTree = ""; }; - ACDECFBE1B4E0AFC008A730B /* oBaseVisComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oBaseVisComponent.h; path = ../omnis.xcomp.framework/oBaseVisComponent.h; sourceTree = ""; }; - ACDECFBF1B4E0AFC008A730B /* oDrawingCanvas.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oDrawingCanvas.cpp; path = ../omnis.xcomp.framework/oDrawingCanvas.cpp; sourceTree = ""; }; - ACDECFC01B4E0AFC008A730B /* oDrawingCanvas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oDrawingCanvas.h; path = ../omnis.xcomp.framework/oDrawingCanvas.h; sourceTree = ""; }; - ACDECFC11B4E0AFC008A730B /* omnis.xcomp.framework.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = omnis.xcomp.framework.h; path = ../omnis.xcomp.framework/omnis.xcomp.framework.h; sourceTree = ""; }; - ACDECFC21B4E0AFC008A730B /* oRGBAImage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oRGBAImage.cpp; path = ../omnis.xcomp.framework/oRGBAImage.cpp; sourceTree = ""; }; - ACDECFC31B4E0AFC008A730B /* oRGBAImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oRGBAImage.h; path = ../omnis.xcomp.framework/oRGBAImage.h; sourceTree = ""; }; - ACDECFC41B4E0AFC008A730B /* oUTF8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oUTF8.cpp; path = ../omnis.xcomp.framework/oUTF8.cpp; sourceTree = ""; }; - ACDECFC51B4E0AFC008A730B /* oUTF8.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oUTF8.h; path = ../omnis.xcomp.framework/oUTF8.h; sourceTree = ""; }; - ACDECFC61B4E0AFC008A730B /* oXCompLib.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oXCompLib.cpp; path = ../omnis.xcomp.framework/oXCompLib.cpp; sourceTree = ""; }; - ACDECFC71B4E0AFC008A730B /* oXCompLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oXCompLib.h; path = ../omnis.xcomp.framework/oXCompLib.h; sourceTree = ""; }; - ACDECFC81B4E0AFC008A730B /* qArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qArray.h; path = ../omnis.xcomp.framework/qArray.h; sourceTree = ""; }; - ACDECFC91B4E0AFC008A730B /* qString.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = qString.cpp; path = ../omnis.xcomp.framework/qString.cpp; sourceTree = ""; }; - ACDECFCA1B4E0AFC008A730B /* qString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qString.h; path = ../omnis.xcomp.framework/qString.h; sourceTree = ""; }; - ACDECFCB1B4E0AFC008A730B /* xCompStandardIncludes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = xCompStandardIncludes.h; path = ../omnis.xcomp.framework/xCompStandardIncludes.h; sourceTree = ""; }; - ACDECFD51B4E0B13008A730B /* oExample.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oExample.cpp; path = Src/oExample.cpp; sourceTree = ""; }; - ACDECFD61B4E0B13008A730B /* example.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = example.cpp; path = Src/example.cpp; sourceTree = ""; }; - ACDECFD71B4E0B13008A730B /* oNVExample.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oNVExample.cpp; path = Src/oNVExample.cpp; sourceTree = ""; }; - ACDECFDC1B4E0B2E008A730B /* English */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; name = English; path = English.lproj/oExample.rc; sourceTree = ""; }; - ACDECFDE1B4E0CF4008A730B /* English */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; name = English; path = English.lproj/oExample.bmp; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 96CA4E590907E8CC00C234AA /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 96CA4E5A0907E8CC00C234AA /* Carbon.framework in Frameworks */, - 96CA4E660907EB0700C234AA /* u_complib.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 089C166AFE841209C02AAC07 /* xrandom */ = { - isa = PBXGroup; - children = ( - ACDECFB71B4E0ADB008A730B /* omnis.xcomp.frameworks */, - 96D631340905093100E0F291 /* Headers */, - 08FB77ADFE841716C02AAC07 /* Source */, - 089C167CFE841241C02AAC07 /* Resources */, - 089C1671FE841209C02AAC07 /* External Frameworks and Libraries */, - 19C28FB4FE9D528D11CA2CBB /* Products */, - ); - name = xrandom; - sourceTree = ""; - }; - 089C1671FE841209C02AAC07 /* External Frameworks and Libraries */ = { - isa = PBXGroup; - children = ( - 96CA4E650907EB0700C234AA /* u_complib.framework */, - 08EA7FFBFE8413EDC02AAC07 /* Carbon.framework */, - ); - name = "External Frameworks and Libraries"; - sourceTree = ""; - }; - 089C167CFE841241C02AAC07 /* Resources */ = { - isa = PBXGroup; - children = ( - ACDECFDD1B4E0CF4008A730B /* oExample.bmp */, - ACDECFDB1B4E0B2E008A730B /* oExample.rc */, - 089C167DFE841241C02AAC07 /* InfoPlist.strings */, - ); - name = Resources; - sourceTree = ""; - }; - 08FB77ADFE841716C02AAC07 /* Source */ = { - isa = PBXGroup; - children = ( - ACDECFD51B4E0B13008A730B /* oExample.cpp */, - ACDECFD61B4E0B13008A730B /* example.cpp */, - ACDECFD71B4E0B13008A730B /* oNVExample.cpp */, - ); - name = Source; - sourceTree = ""; - }; - 19C28FB4FE9D528D11CA2CBB /* Products */ = { - isa = PBXGroup; - children = ( - 96CA4E610907E8CC00C234AA /* oExample.u_xcomp */, - ); - name = Products; - sourceTree = ""; - }; - 96D631340905093100E0F291 /* Headers */ = { - isa = PBXGroup; - children = ( - ACDECFB41B4E0AD7008A730B /* oExample.h */, - ACDECFB51B4E0AD7008A730B /* example.h */, - ACDECFB61B4E0AD7008A730B /* oNVExample.h */, - ); - name = Headers; - sourceTree = ""; - }; - ACDECFB71B4E0ADB008A730B /* omnis.xcomp.frameworks */ = { - isa = PBXGroup; - children = ( - ACDECFB81B4E0AFC008A730B /* FrameworkWndProc.cpp */, - ACDECFB91B4E0AFC008A730B /* oBaseComponent.cpp */, - ACDECFBA1B4E0AFC008A730B /* oBaseComponent.h */, - ACDECFBB1B4E0AFC008A730B /* oBaseNVComponent.cpp */, - ACDECFBC1B4E0AFC008A730B /* oBaseNVComponent.h */, - ACDECFBD1B4E0AFC008A730B /* oBaseVisComponent.cpp */, - ACDECFBE1B4E0AFC008A730B /* oBaseVisComponent.h */, - ACDECFBF1B4E0AFC008A730B /* oDrawingCanvas.cpp */, - ACDECFC01B4E0AFC008A730B /* oDrawingCanvas.h */, - ACDECFC11B4E0AFC008A730B /* omnis.xcomp.framework.h */, - ACDECFC21B4E0AFC008A730B /* oRGBAImage.cpp */, - ACDECFC31B4E0AFC008A730B /* oRGBAImage.h */, - ACDECFC41B4E0AFC008A730B /* oUTF8.cpp */, - ACDECFC51B4E0AFC008A730B /* oUTF8.h */, - ACDECFC61B4E0AFC008A730B /* oXCompLib.cpp */, - ACDECFC71B4E0AFC008A730B /* oXCompLib.h */, - ACDECFC81B4E0AFC008A730B /* qArray.h */, - ACDECFC91B4E0AFC008A730B /* qString.cpp */, - ACDECFCA1B4E0AFC008A730B /* qString.h */, - ACDECFCB1B4E0AFC008A730B /* xCompStandardIncludes.h */, - ); - name = omnis.xcomp.frameworks; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 96CA4E530907E8CC00C234AA /* UnicodeCore */ = { - isa = PBXNativeTarget; - buildConfigurationList = 96CA4E5D0907E8CC00C234AA /* Build configuration list for PBXNativeTarget "UnicodeCore" */; - buildPhases = ( - 96CA4E540907E8CC00C234AA /* Resources */, - 96CA4E570907E8CC00C234AA /* Sources */, - 96CA4E590907E8CC00C234AA /* Frameworks */, - ); - buildRules = ( - 96CA4E5C0907E8CC00C234AA /* PBXBuildRule */, - ); - dependencies = ( - ); - name = UnicodeCore; - productInstallPath = "$(HOME)/Library/Bundles"; - productName = xrandom; - productReference = 96CA4E610907E8CC00C234AA /* oExample.u_xcomp */; - productType = "com.apple.product-type.bundle"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 089C1669FE841209C02AAC07 /* Project object */ = { - isa = PBXProject; - attributes = { - }; - buildConfigurationList = 96CF455E08FBABD1003AA3FE /* Build configuration list for PBXProject "example_OS61" */; - compatibilityVersion = "Xcode 2.4"; - developmentRegion = English; - hasScannedForEncodings = 1; - knownRegions = ( - English, - Japanese, - French, - German, - english, - ); - mainGroup = 089C166AFE841209C02AAC07 /* xrandom */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 96CA4E530907E8CC00C234AA /* UnicodeCore */, - 96D355F20908DD62006B6436 /* ReleaseBuild */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 96CA4E540907E8CC00C234AA /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ACDECFDF1B4E0CF4008A730B /* oExample.bmp in Resources */, - 96CA4E550907E8CC00C234AA /* InfoPlist.strings in Resources */, - ACDECFE01B4E0D6D008A730B /* oExample.rc in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 96CA4E570907E8CC00C234AA /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ACDECFD21B4E0AFC008A730B /* oUTF8.cpp in Sources */, - ACDECFCF1B4E0AFC008A730B /* oBaseVisComponent.cpp in Sources */, - ACDECFD81B4E0B13008A730B /* oExample.cpp in Sources */, - ACDECFCC1B4E0AFC008A730B /* FrameworkWndProc.cpp in Sources */, - ACDECFCD1B4E0AFC008A730B /* oBaseComponent.cpp in Sources */, - ACDECFD31B4E0AFC008A730B /* oXCompLib.cpp in Sources */, - ACDECFDA1B4E0B13008A730B /* oNVExample.cpp in Sources */, - ACDECFD91B4E0B13008A730B /* example.cpp in Sources */, - ACDECFD11B4E0AFC008A730B /* oRGBAImage.cpp in Sources */, - ACDECFCE1B4E0AFC008A730B /* oBaseNVComponent.cpp in Sources */, - ACDECFD01B4E0AFC008A730B /* oDrawingCanvas.cpp in Sources */, - ACDECFD41B4E0AFC008A730B /* qString.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 9658838409BC64BB0063770F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 96CA4E530907E8CC00C234AA /* UnicodeCore */; - targetProxy = 9658838309BC64BB0063770F /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin PBXVariantGroup section */ - 089C167DFE841241C02AAC07 /* InfoPlist.strings */ = { - isa = PBXVariantGroup; - children = ( - 089C167EFE841241C02AAC07 /* English */, - ); - name = InfoPlist.strings; - sourceTree = ""; - }; - ACDECFDB1B4E0B2E008A730B /* oExample.rc */ = { - isa = PBXVariantGroup; - children = ( - ACDECFDC1B4E0B2E008A730B /* English */, - ); - name = oExample.rc; - sourceTree = ""; - }; - ACDECFDD1B4E0CF4008A730B /* oExample.bmp */ = { - isa = PBXVariantGroup; - children = ( - ACDECFDE1B4E0CF4008A730B /* English */, - ); - name = oExample.bmp; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 96CA4E5E0907E8CC00C234AA /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - BUILD_VARIANTS = normal; - COPY_PHASE_STRIP = NO; - DEPLOYMENT_LOCATION = YES; - FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../complib"; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = NO; - GCC_PREFIX_HEADER = $PROJECT_DIR/../complib/u_complib.framework/Headers/carbnuni.h; - GENERATE_PKGINFO_FILE = YES; - HEADER_SEARCH_PATHS = ( - /Developer/Headers/FlatCarbon, - $PROJECT_DIR/../complib/u_complib.framework/Headers, - ); - INFOPLIST_FILE = $PROJECT_DIR/Info.plist; - INIT_ROUTINE = ""; - INSTALL_PATH = "$(PROJECT_DIR)/../_OSXUnicodeDbg"; - LIBRARY_SEARCH_PATHS = ""; - LIBRARY_STYLE = DYNAMIC; - OTHER_CFLAGS = ( - "-fshort-wchar", - "-Dismach_o", - "-Wno-comment", - "-DOMNISSDK=61", - ); - OTHER_CPLUSPLUSFLAGS = "$(OTHER_CFLAGS)"; - OTHER_LDFLAGS = ""; - PRODUCT_NAME = oExample; - RESMERGER_SOURCES_FORK = data; - REZ_SEARCH_PATHS = ( - /Developer/Headers/FlatCarbon, - $PROJECT_DIR, - $PROJECT_DIR/English.lproj, - ); - WRAPPER_EXTENSION = u_xcomp; - ZERO_LINK = NO; - }; - name = Development; - }; - 96CA4E5F0907E8CC00C234AA /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = i386; - COPY_PHASE_STRIP = YES; - DEPLOYMENT_LOCATION = YES; - DSTROOT = /; - FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../complib"; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_PRECOMPILE_PREFIX_HEADER = NO; - GCC_PREFIX_HEADER = $PROJECT_DIR/../complib/u_complib.framework/Headers/carbnuni.h; - GENERATE_PKGINFO_FILE = YES; - HEADER_SEARCH_PATHS = ( - /Developer/Headers/FlatCarbon, - $PROJECT_DIR/../complib/u_complib.framework/Headers, - ); - INFOPLIST_FILE = $PROJECT_DIR/Info.plist; - INSTALL_PATH = "$(PROJECT_DIR)/../_OSXUnicode"; - LIBRARY_SEARCH_PATHS = ""; - LIBRARY_STYLE = DYNAMIC; - OTHER_CFLAGS = ( - "-fshort-wchar", - "-Dismach_o", - "-Wno-comment", - "-DOMNISSDK=61", - ); - OTHER_CPLUSPLUSFLAGS = "$(OTHER_CFLAGS)"; - PRODUCT_NAME = oExample; - RESMERGER_SOURCES_FORK = data; - REZ_SEARCH_PATHS = ( - /Developer/Headers/FlatCarbon, - $PROJECT_DIR, - $PROJECT_DIR/English.lproj, - ); - SKIP_INSTALL = NO; - WRAPPER_EXTENSION = u_xcomp; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 96CF455F08FBABD1003AA3FE /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = NO; - DSTROOT = /; - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO; - LIBRARY_STYLE = DYNAMIC; - MACOSX_DEPLOYMENT_TARGET = 10.7; - SDKROOT = macosx10.7; - }; - name = Development; - }; - 96CF456008FBABD1003AA3FE /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO; - MACOSX_DEPLOYMENT_TARGET = 10.7; - SDKROOT = macosx10.7; - }; - name = Deployment; - }; - 96D355F40908DD80006B6436 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - OPTIMIZATION_CFLAGS = "-O0"; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = ReleaseBuild; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = ( - "-Wmost", - "-Wno-four-char-constants", - "-Wno-unknown-pragmas", - ); - }; - name = Development; - }; - 96D355F50908DD80006B6436 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - OPTIMIZATION_CFLAGS = "-O0"; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = ReleaseBuild; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = ( - "-Wmost", - "-Wno-four-char-constants", - "-Wno-unknown-pragmas", - ); - }; - name = Deployment; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 96CA4E5D0907E8CC00C234AA /* Build configuration list for PBXNativeTarget "UnicodeCore" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 96CA4E5E0907E8CC00C234AA /* Development */, - 96CA4E5F0907E8CC00C234AA /* Deployment */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; - 96CF455E08FBABD1003AA3FE /* Build configuration list for PBXProject "example_OS61" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 96CF455F08FBABD1003AA3FE /* Development */, - 96CF456008FBABD1003AA3FE /* Deployment */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; - 96D355F30908DD80006B6436 /* Build configuration list for PBXAggregateTarget "ReleaseBuild" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 96D355F40908DD80006B6436 /* Development */, - 96D355F50908DD80006B6436 /* Deployment */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; -/* End XCConfigurationList section */ - }; - rootObject = 089C1669FE841209C02AAC07 /* Project object */; -} diff --git a/example_OS61.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/example_OS61.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a..0000000 --- a/example_OS61.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/example_OS61.xcodeproj/project.xcworkspace/xcshareddata/example_OS61.xccheckout b/example_OS61.xcodeproj/project.xcworkspace/xcshareddata/example_OS61.xccheckout deleted file mode 100644 index 95f5527..0000000 --- a/example_OS61.xcodeproj/project.xcworkspace/xcshareddata/example_OS61.xccheckout +++ /dev/null @@ -1,53 +0,0 @@ - - - - - IDESourceControlProjectFavoriteDictionaryKey - - IDESourceControlProjectIdentifier - FDC92BC1-982A-4B7E-B651-4AFCA17E8429 - IDESourceControlProjectName - example_OS61 - IDESourceControlProjectOriginsDictionary - - 7F3125AB3002A6EB5EE34F1D937C08C261A59D3B - https://github.com/BastiaanOlij/omnis.xcomp.example - 83859B19F24D8570D364771565ABFE47806DF8FC - https://github.com/BastiaanOlij/omnis.xcomp.framework - - IDESourceControlProjectPath - example_OS61.xcodeproj - IDESourceControlProjectRelativeInstallPathDictionary - - 7F3125AB3002A6EB5EE34F1D937C08C261A59D3B - ../.. - 83859B19F24D8570D364771565ABFE47806DF8FC - ../../../omnis.xcomp.framework - - IDESourceControlProjectURL - https://github.com/BastiaanOlij/omnis.xcomp.example - IDESourceControlProjectVersion - 111 - IDESourceControlProjectWCCIdentifier - 7F3125AB3002A6EB5EE34F1D937C08C261A59D3B - IDESourceControlProjectWCConfigurations - - - IDESourceControlRepositoryExtensionIdentifierKey - public.vcs.git - IDESourceControlWCCIdentifierKey - 7F3125AB3002A6EB5EE34F1D937C08C261A59D3B - IDESourceControlWCCName - omnis.xcomp.example - - - IDESourceControlRepositoryExtensionIdentifierKey - public.vcs.git - IDESourceControlWCCIdentifierKey - 83859B19F24D8570D364771565ABFE47806DF8FC - IDESourceControlWCCName - omnis.xcomp.framework - - - - diff --git a/example_OS80.xcodeproj/project.pbxproj b/example_OS80.xcodeproj/project.pbxproj deleted file mode 100644 index 1dc0a64..0000000 --- a/example_OS80.xcodeproj/project.pbxproj +++ /dev/null @@ -1,468 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 2D7DE4B517CE03B300642BA9 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2D7DE4B217CE03B300642BA9 /* InfoPlist.strings */; }; - 2DAD106F17BCEE60005A7F56 /* u_complib.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2DAD106E17BCEE60005A7F56 /* u_complib.framework */; }; - 2DD7697817BBA5F4005F1CFB /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2DD7697717BBA5F4005F1CFB /* Cocoa.framework */; }; - ACD9D8631DB8388F001C774A /* FrameworkWndProc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACD9D84F1DB8388F001C774A /* FrameworkWndProc.cpp */; }; - ACD9D8641DB8388F001C774A /* oBaseComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACD9D8501DB8388F001C774A /* oBaseComponent.cpp */; }; - ACD9D8651DB8388F001C774A /* oBaseNVComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACD9D8521DB8388F001C774A /* oBaseNVComponent.cpp */; }; - ACD9D8661DB8388F001C774A /* oBaseVisComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACD9D8541DB8388F001C774A /* oBaseVisComponent.cpp */; }; - ACD9D8671DB8388F001C774A /* oDrawingCanvas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACD9D8561DB8388F001C774A /* oDrawingCanvas.cpp */; }; - ACD9D8681DB8388F001C774A /* oRGBAImage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACD9D8591DB8388F001C774A /* oRGBAImage.cpp */; }; - ACD9D8691DB8388F001C774A /* oUTF8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACD9D85B1DB8388F001C774A /* oUTF8.cpp */; }; - ACD9D86A1DB8388F001C774A /* oXCompLib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACD9D85D1DB8388F001C774A /* oXCompLib.cpp */; }; - ACD9D86B1DB8388F001C774A /* qString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACD9D8601DB8388F001C774A /* qString.cpp */; }; - ACD9D8721DB838A9001C774A /* example.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACD9D86F1DB838A9001C774A /* example.cpp */; }; - ACD9D8731DB838A9001C774A /* oExample.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACD9D8701DB838A9001C774A /* oExample.cpp */; }; - ACD9D8741DB838A9001C774A /* oNVExample.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACD9D8711DB838A9001C774A /* oNVExample.cpp */; }; - ACD9D8771DB838C8001C774A /* oExample.rc in Resources */ = {isa = PBXBuildFile; fileRef = ACD9D8751DB838B9001C774A /* oExample.rc */; }; -/* End PBXBuildFile section */ - -/* Begin PBXBuildRule section */ - 2DDD8B9017F426C100F4E765 /* PBXBuildRule */ = { - isa = PBXBuildRule; - compilerSpec = com.apple.compilers.proxy.script; - filePatterns = "*.rc"; - fileType = pattern.proxy; - isEditable = 1; - outputFiles = ( - "$(TEMP_FILE_DIR)/omnisrc/Localizable.strings", - ); - script = "$DEVELOPER_TOOLS_DIR/omnisrc64.app/Contents/MacOS/omnisrc64 INPUT_FILE_PATH TEMP_FILE_DIR REZ_SEARCH_PATHS XCOMP\nif [ -f $TEMP_FILE_DIR/omnisrc/Bitmap.strings ]; then\ncp $TEMP_FILE_DIR/omnisrc/Bitmap.strings $INSTALL_DIR/$CONTENTS_FOLDER_PATH/Resources\nfi\nshopt -s nullglob\nif [ ! -z \"`echo $TEMP_FILE_DIR/omnisrc/*.PNG`\" ]; then\ncp $TEMP_FILE_DIR/omnisrc/*.PNG $INSTALL_DIR/$CONTENTS_FOLDER_PATH/Resources\nfi"; - }; -/* End PBXBuildRule section */ - -/* Begin PBXFileReference section */ - 2D7DE4B317CE03B300642BA9 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; - 2DAD106E17BCEE60005A7F56 /* u_complib.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = u_complib.framework; path = ../complib/u_complib.framework; sourceTree = ""; }; - 2DD7697417BBA5F4005F1CFB /* oExample.u_xcomp */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = oExample.u_xcomp; sourceTree = BUILT_PRODUCTS_DIR; }; - 2DD7697717BBA5F4005F1CFB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; }; - 2DD7697A17BBA5F4005F1CFB /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; }; - 2DD7697B17BBA5F4005F1CFB /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; }; - 2DD7697C17BBA5F4005F1CFB /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; - ACD9D84F1DB8388F001C774A /* FrameworkWndProc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = FrameworkWndProc.cpp; path = ../omnis.xcomp.framework/FrameworkWndProc.cpp; sourceTree = ""; }; - ACD9D8501DB8388F001C774A /* oBaseComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oBaseComponent.cpp; path = ../omnis.xcomp.framework/oBaseComponent.cpp; sourceTree = ""; }; - ACD9D8511DB8388F001C774A /* oBaseComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oBaseComponent.h; path = ../omnis.xcomp.framework/oBaseComponent.h; sourceTree = ""; }; - ACD9D8521DB8388F001C774A /* oBaseNVComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oBaseNVComponent.cpp; path = ../omnis.xcomp.framework/oBaseNVComponent.cpp; sourceTree = ""; }; - ACD9D8531DB8388F001C774A /* oBaseNVComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oBaseNVComponent.h; path = ../omnis.xcomp.framework/oBaseNVComponent.h; sourceTree = ""; }; - ACD9D8541DB8388F001C774A /* oBaseVisComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oBaseVisComponent.cpp; path = ../omnis.xcomp.framework/oBaseVisComponent.cpp; sourceTree = ""; }; - ACD9D8551DB8388F001C774A /* oBaseVisComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oBaseVisComponent.h; path = ../omnis.xcomp.framework/oBaseVisComponent.h; sourceTree = ""; }; - ACD9D8561DB8388F001C774A /* oDrawingCanvas.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oDrawingCanvas.cpp; path = ../omnis.xcomp.framework/oDrawingCanvas.cpp; sourceTree = ""; }; - ACD9D8571DB8388F001C774A /* oDrawingCanvas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oDrawingCanvas.h; path = ../omnis.xcomp.framework/oDrawingCanvas.h; sourceTree = ""; }; - ACD9D8581DB8388F001C774A /* omnis.xcomp.framework.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = omnis.xcomp.framework.h; path = ../omnis.xcomp.framework/omnis.xcomp.framework.h; sourceTree = ""; }; - ACD9D8591DB8388F001C774A /* oRGBAImage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oRGBAImage.cpp; path = ../omnis.xcomp.framework/oRGBAImage.cpp; sourceTree = ""; }; - ACD9D85A1DB8388F001C774A /* oRGBAImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oRGBAImage.h; path = ../omnis.xcomp.framework/oRGBAImage.h; sourceTree = ""; }; - ACD9D85B1DB8388F001C774A /* oUTF8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oUTF8.cpp; path = ../omnis.xcomp.framework/oUTF8.cpp; sourceTree = ""; }; - ACD9D85C1DB8388F001C774A /* oUTF8.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oUTF8.h; path = ../omnis.xcomp.framework/oUTF8.h; sourceTree = ""; }; - ACD9D85D1DB8388F001C774A /* oXCompLib.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oXCompLib.cpp; path = ../omnis.xcomp.framework/oXCompLib.cpp; sourceTree = ""; }; - ACD9D85E1DB8388F001C774A /* oXCompLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oXCompLib.h; path = ../omnis.xcomp.framework/oXCompLib.h; sourceTree = ""; }; - ACD9D85F1DB8388F001C774A /* qArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qArray.h; path = ../omnis.xcomp.framework/qArray.h; sourceTree = ""; }; - ACD9D8601DB8388F001C774A /* qString.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = qString.cpp; path = ../omnis.xcomp.framework/qString.cpp; sourceTree = ""; }; - ACD9D8611DB8388F001C774A /* qString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qString.h; path = ../omnis.xcomp.framework/qString.h; sourceTree = ""; }; - ACD9D8621DB8388F001C774A /* xCompStandardIncludes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = xCompStandardIncludes.h; path = ../omnis.xcomp.framework/xCompStandardIncludes.h; sourceTree = ""; }; - ACD9D86C1DB8389C001C774A /* example.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = example.h; path = Src/example.h; sourceTree = ""; }; - ACD9D86D1DB8389C001C774A /* oExample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oExample.h; path = Src/oExample.h; sourceTree = ""; }; - ACD9D86E1DB8389C001C774A /* oNVExample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oNVExample.h; path = Src/oNVExample.h; sourceTree = ""; }; - ACD9D86F1DB838A9001C774A /* example.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = example.cpp; path = Src/example.cpp; sourceTree = SOURCE_ROOT; }; - ACD9D8701DB838A9001C774A /* oExample.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oExample.cpp; path = Src/oExample.cpp; sourceTree = SOURCE_ROOT; }; - ACD9D8711DB838A9001C774A /* oNVExample.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oNVExample.cpp; path = Src/oNVExample.cpp; sourceTree = SOURCE_ROOT; }; - ACD9D8761DB838B9001C774A /* English */ = {isa = PBXFileReference; explicitFileType = text; name = English; path = English.lproj/oExample.rc; sourceTree = ""; }; - ACD9D8791DB8399F001C774A /* stb_image_resize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = stb_image_resize.h; path = ../omnis.xcomp.framework/stb/stb_image_resize.h; sourceTree = ""; }; - ACD9D87A1DB8399F001C774A /* stb_image_write.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = stb_image_write.h; path = ../omnis.xcomp.framework/stb/stb_image_write.h; sourceTree = ""; }; - ACD9D87B1DB8399F001C774A /* stb_image.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = stb_image.h; path = ../omnis.xcomp.framework/stb/stb_image.h; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 2DD7697117BBA5F4005F1CFB /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 2DD7697817BBA5F4005F1CFB /* Cocoa.framework in Frameworks */, - 2DAD106F17BCEE60005A7F56 /* u_complib.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 2D3F845B17C50A43008A8E5D /* Headers */ = { - isa = PBXGroup; - children = ( - ACD9D86C1DB8389C001C774A /* example.h */, - ACD9D86D1DB8389C001C774A /* oExample.h */, - ACD9D86E1DB8389C001C774A /* oNVExample.h */, - ); - name = Headers; - sourceTree = ""; - }; - 2D7DE4AF17CE02C100642BA9 /* Resources */ = { - isa = PBXGroup; - children = ( - ACD9D8751DB838B9001C774A /* oExample.rc */, - 2D7DE4B217CE03B300642BA9 /* InfoPlist.strings */, - ); - name = Resources; - sourceTree = ""; - }; - 2DD7696B17BBA5F4005F1CFB = { - isa = PBXGroup; - children = ( - ACD9D84E1DB83856001C774A /* omnis.xcomp.frameworks */, - 2D3F845B17C50A43008A8E5D /* Headers */, - 2DD7697D17BBA5F4005F1CFB /* Source */, - 2D7DE4AF17CE02C100642BA9 /* Resources */, - 2DD7697617BBA5F4005F1CFB /* External Frameworks and Libraries */, - 2DD7697517BBA5F4005F1CFB /* Products */, - ); - sourceTree = ""; - }; - 2DD7697517BBA5F4005F1CFB /* Products */ = { - isa = PBXGroup; - children = ( - 2DD7697417BBA5F4005F1CFB /* oExample.u_xcomp */, - ); - name = Products; - sourceTree = ""; - }; - 2DD7697617BBA5F4005F1CFB /* External Frameworks and Libraries */ = { - isa = PBXGroup; - children = ( - 2DD7697717BBA5F4005F1CFB /* Cocoa.framework */, - 2DAD106E17BCEE60005A7F56 /* u_complib.framework */, - 2DD7697917BBA5F4005F1CFB /* Other Frameworks */, - ); - name = "External Frameworks and Libraries"; - sourceTree = ""; - }; - 2DD7697917BBA5F4005F1CFB /* Other Frameworks */ = { - isa = PBXGroup; - children = ( - 2DD7697A17BBA5F4005F1CFB /* AppKit.framework */, - 2DD7697B17BBA5F4005F1CFB /* CoreData.framework */, - 2DD7697C17BBA5F4005F1CFB /* Foundation.framework */, - ); - name = "Other Frameworks"; - sourceTree = ""; - }; - 2DD7697D17BBA5F4005F1CFB /* Source */ = { - isa = PBXGroup; - children = ( - ACD9D86F1DB838A9001C774A /* example.cpp */, - ACD9D8701DB838A9001C774A /* oExample.cpp */, - ACD9D8711DB838A9001C774A /* oNVExample.cpp */, - ); - name = Source; - path = generic; - sourceTree = ""; - }; - ACD9D84E1DB83856001C774A /* omnis.xcomp.frameworks */ = { - isa = PBXGroup; - children = ( - ACD9D8781DB83967001C774A /* stb */, - ACD9D84F1DB8388F001C774A /* FrameworkWndProc.cpp */, - ACD9D8501DB8388F001C774A /* oBaseComponent.cpp */, - ACD9D8511DB8388F001C774A /* oBaseComponent.h */, - ACD9D8521DB8388F001C774A /* oBaseNVComponent.cpp */, - ACD9D8531DB8388F001C774A /* oBaseNVComponent.h */, - ACD9D8541DB8388F001C774A /* oBaseVisComponent.cpp */, - ACD9D8551DB8388F001C774A /* oBaseVisComponent.h */, - ACD9D8561DB8388F001C774A /* oDrawingCanvas.cpp */, - ACD9D8571DB8388F001C774A /* oDrawingCanvas.h */, - ACD9D8581DB8388F001C774A /* omnis.xcomp.framework.h */, - ACD9D8591DB8388F001C774A /* oRGBAImage.cpp */, - ACD9D85A1DB8388F001C774A /* oRGBAImage.h */, - ACD9D85B1DB8388F001C774A /* oUTF8.cpp */, - ACD9D85C1DB8388F001C774A /* oUTF8.h */, - ACD9D85D1DB8388F001C774A /* oXCompLib.cpp */, - ACD9D85E1DB8388F001C774A /* oXCompLib.h */, - ACD9D85F1DB8388F001C774A /* qArray.h */, - ACD9D8601DB8388F001C774A /* qString.cpp */, - ACD9D8611DB8388F001C774A /* qString.h */, - ACD9D8621DB8388F001C774A /* xCompStandardIncludes.h */, - ); - name = omnis.xcomp.frameworks; - sourceTree = ""; - }; - ACD9D8781DB83967001C774A /* stb */ = { - isa = PBXGroup; - children = ( - ACD9D8791DB8399F001C774A /* stb_image_resize.h */, - ACD9D87A1DB8399F001C774A /* stb_image_write.h */, - ACD9D87B1DB8399F001C774A /* stb_image.h */, - ); - name = stb; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 2DD7697317BBA5F4005F1CFB /* UnicodeCore */ = { - isa = PBXNativeTarget; - buildConfigurationList = 2DD7698617BBA5F4005F1CFB /* Build configuration list for PBXNativeTarget "UnicodeCore" */; - buildPhases = ( - 2DD7697017BBA5F4005F1CFB /* Sources */, - 2DD7697117BBA5F4005F1CFB /* Frameworks */, - 2DD7697217BBA5F4005F1CFB /* Resources */, - ); - buildRules = ( - 2DDD8B9017F426C100F4E765 /* PBXBuildRule */, - ); - dependencies = ( - ); - name = UnicodeCore; - productName = generic; - productReference = 2DD7697417BBA5F4005F1CFB /* oExample.u_xcomp */; - productType = "com.apple.product-type.bundle"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 2DD7696C17BBA5F4005F1CFB /* Project object */ = { - isa = PBXProject; - attributes = { - LastUpgradeCheck = 0460; - ORGANIZATIONNAME = "TigerLogic Inc"; - }; - buildConfigurationList = 2DD7696F17BBA5F4005F1CFB /* Build configuration list for PBXProject "example_OS80" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - English, - ); - mainGroup = 2DD7696B17BBA5F4005F1CFB; - productRefGroup = 2DD7697517BBA5F4005F1CFB /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 2DD7697317BBA5F4005F1CFB /* UnicodeCore */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 2DD7697217BBA5F4005F1CFB /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 2D7DE4B517CE03B300642BA9 /* InfoPlist.strings in Resources */, - ACD9D8771DB838C8001C774A /* oExample.rc in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 2DD7697017BBA5F4005F1CFB /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ACD9D8691DB8388F001C774A /* oUTF8.cpp in Sources */, - ACD9D8661DB8388F001C774A /* oBaseVisComponent.cpp in Sources */, - ACD9D8631DB8388F001C774A /* FrameworkWndProc.cpp in Sources */, - ACD9D8641DB8388F001C774A /* oBaseComponent.cpp in Sources */, - ACD9D86A1DB8388F001C774A /* oXCompLib.cpp in Sources */, - ACD9D8681DB8388F001C774A /* oRGBAImage.cpp in Sources */, - ACD9D8721DB838A9001C774A /* example.cpp in Sources */, - ACD9D8651DB8388F001C774A /* oBaseNVComponent.cpp in Sources */, - ACD9D8731DB838A9001C774A /* oExample.cpp in Sources */, - ACD9D8671DB8388F001C774A /* oDrawingCanvas.cpp in Sources */, - ACD9D86B1DB8388F001C774A /* qString.cpp in Sources */, - ACD9D8741DB838A9001C774A /* oNVExample.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXVariantGroup section */ - 2D7DE4B217CE03B300642BA9 /* InfoPlist.strings */ = { - isa = PBXVariantGroup; - children = ( - 2D7DE4B317CE03B300642BA9 /* English */, - ); - name = InfoPlist.strings; - sourceTree = ""; - }; - ACD9D8751DB838B9001C774A /* oExample.rc */ = { - isa = PBXVariantGroup; - children = ( - ACD9D8761DB838B9001C774A /* English */, - ); - name = oExample.rc; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 2DD7698417BBA5F4005F1CFB /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_CXX_LANGUAGE_STANDARD = "compiler-default"; - CLANG_CXX_LIBRARY = "compiler-default"; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CONFIGURATION_BUILD_DIR = $PROJECT_DIR/../_OSXUnicodeDbg; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - GCC_C_LANGUAGE_STANDARD = "compiler-default"; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_OBJC_EXCEPTIONS = YES; - GCC_INPUT_FILETYPE = sourcecode.cpp.objcpp; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.10; - ONLY_ACTIVE_ARCH = YES; - OTHER_CFLAGS = ( - "-fshort-wchar", - "-Dismach_o", - "-Wno-comment", - "-DOMNISSDK=80", - ); - PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO; - REZ_SEARCH_PATHS = ( - $PROJECT_DIR, - $PROJECT_DIR/English.lproj, - ); - SDKROOT = macosx; - STRIP_INSTALLED_PRODUCT = NO; - }; - name = Development; - }; - 2DD7698517BBA5F4005F1CFB /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_CXX_LANGUAGE_STANDARD = "compiler-default"; - CLANG_CXX_LIBRARY = "compiler-default"; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CONFIGURATION_BUILD_DIR = $PROJECT_DIR/../_OSXUnicode; - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = dwarf; - GCC_C_LANGUAGE_STANDARD = "compiler-default"; - GCC_ENABLE_OBJC_EXCEPTIONS = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_INPUT_FILETYPE = sourcecode.cpp.objcpp; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.10; - OTHER_CFLAGS = ( - "-fshort-wchar", - "-Dismach_o", - "-Wno-comment", - "-DOMNISSDK=80", - ); - PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO; - REZ_SEARCH_PATHS = ( - $PROJECT_DIR, - $PROJECT_DIR/English.lproj, - ); - SDKROOT = macosx; - STRIP_INSTALLED_PRODUCT = NO; - }; - name = Deployment; - }; - 2DD7698717BBA5F4005F1CFB /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COMBINE_HIDPI_IMAGES = YES; - CONFIGURATION_TEMP_DIR = "$(PROJECT_DIR)"; - DSTROOT = /; - EXPORTED_SYMBOLS_FILE = ""; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "\"$(SRCROOT)/../complib\"", - ); - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = $PROJECT_DIR/../complib/u_complib.framework/Headers/carbnuni.h; - GENERATE_PKGINFO_FILE = YES; - HEADER_SEARCH_PATHS = $PROJECT_DIR/../complib/u_complib.framework/Headers; - INFOPLIST_FILE = $PROJECT_DIR/Info.plist; - INSTALL_PATH = $PROJECT_DIR/../_OSXUnicodeDbg; - MACOSX_DEPLOYMENT_TARGET = 10.9; - OTHER_LDFLAGS = ""; - PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO; - PRODUCT_NAME = oExample; - WRAPPER_EXTENSION = u_xcomp; - }; - name = Development; - }; - 2DD7698817BBA5F4005F1CFB /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - COMBINE_HIDPI_IMAGES = YES; - CONFIGURATION_TEMP_DIR = "$(PROJECT_DIR)"; - DSTROOT = /; - EXPORTED_SYMBOLS_FILE = ""; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "\"$(SRCROOT)/../complib\"", - ); - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = $PROJECT_DIR/../complib/u_complib.framework/Headers/carbnuni.h; - GENERATE_PKGINFO_FILE = YES; - HEADER_SEARCH_PATHS = $PROJECT_DIR/../complib/u_complib.framework/Headers; - INFOPLIST_FILE = $PROJECT_DIR/Info.plist; - INSTALL_PATH = $PROJECT_DIR/../_OSXUnicode; - MACOSX_DEPLOYMENT_TARGET = 10.9; - OTHER_LDFLAGS = ""; - PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO; - PRODUCT_NAME = oExample; - WRAPPER_EXTENSION = u_xcomp; - }; - name = Deployment; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 2DD7696F17BBA5F4005F1CFB /* Build configuration list for PBXProject "example_OS80" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 2DD7698417BBA5F4005F1CFB /* Development */, - 2DD7698517BBA5F4005F1CFB /* Deployment */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; - 2DD7698617BBA5F4005F1CFB /* Build configuration list for PBXNativeTarget "UnicodeCore" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 2DD7698717BBA5F4005F1CFB /* Development */, - 2DD7698817BBA5F4005F1CFB /* Deployment */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; -/* End XCConfigurationList section */ - }; - rootObject = 2DD7696C17BBA5F4005F1CFB /* Project object */; -} diff --git a/example_OS80.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/example_OS80.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a..0000000 --- a/example_OS80.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/example_OS80.xcodeproj/project.xcworkspace/xcshareddata/example_OS80.xccheckout b/example_OS80.xcodeproj/project.xcworkspace/xcshareddata/example_OS80.xccheckout deleted file mode 100644 index 3d42356..0000000 --- a/example_OS80.xcodeproj/project.xcworkspace/xcshareddata/example_OS80.xccheckout +++ /dev/null @@ -1,53 +0,0 @@ - - - - - IDESourceControlProjectFavoriteDictionaryKey - - IDESourceControlProjectIdentifier - DA3BC5B3-F9D9-4E72-BCC8-A77DA6DEE5F7 - IDESourceControlProjectName - example_OS80 - IDESourceControlProjectOriginsDictionary - - 7F3125AB3002A6EB5EE34F1D937C08C261A59D3B - https://github.com/BastiaanOlij/omnis.xcomp.example - 83859B19F24D8570D364771565ABFE47806DF8FC - https://github.com/BastiaanOlij/omnis.xcomp.framework - - IDESourceControlProjectPath - example_OS80.xcodeproj - IDESourceControlProjectRelativeInstallPathDictionary - - 7F3125AB3002A6EB5EE34F1D937C08C261A59D3B - ../.. - 83859B19F24D8570D364771565ABFE47806DF8FC - ../../../omnis.xcomp.framework - - IDESourceControlProjectURL - https://github.com/BastiaanOlij/omnis.xcomp.example - IDESourceControlProjectVersion - 111 - IDESourceControlProjectWCCIdentifier - 7F3125AB3002A6EB5EE34F1D937C08C261A59D3B - IDESourceControlProjectWCConfigurations - - - IDESourceControlRepositoryExtensionIdentifierKey - public.vcs.git - IDESourceControlWCCIdentifierKey - 7F3125AB3002A6EB5EE34F1D937C08C261A59D3B - IDESourceControlWCCName - omnis.xcomp.example - - - IDESourceControlRepositoryExtensionIdentifierKey - public.vcs.git - IDESourceControlWCCIdentifierKey - 83859B19F24D8570D364771565ABFE47806DF8FC - IDESourceControlWCCName - omnis.xcomp.framework - - - - diff --git a/example_OS80.xcodeproj/project.xcworkspace/xcshareddata/example_OS80.xcscmblueprint b/example_OS80.xcodeproj/project.xcworkspace/xcshareddata/example_OS80.xcscmblueprint deleted file mode 100644 index 5cae792..0000000 --- a/example_OS80.xcodeproj/project.xcworkspace/xcshareddata/example_OS80.xcscmblueprint +++ /dev/null @@ -1,30 +0,0 @@ -{ - "DVTSourceControlWorkspaceBlueprintPrimaryRemoteRepositoryKey" : "7F3125AB3002A6EB5EE34F1D937C08C261A59D3B", - "DVTSourceControlWorkspaceBlueprintWorkingCopyRepositoryLocationsKey" : { - - }, - "DVTSourceControlWorkspaceBlueprintWorkingCopyStatesKey" : { - "83859B19F24D8570D364771565ABFE47806DF8FC" : 0, - "7F3125AB3002A6EB5EE34F1D937C08C261A59D3B" : 0 - }, - "DVTSourceControlWorkspaceBlueprintIdentifierKey" : "DA3BC5B3-F9D9-4E72-BCC8-A77DA6DEE5F7", - "DVTSourceControlWorkspaceBlueprintWorkingCopyPathsKey" : { - "83859B19F24D8570D364771565ABFE47806DF8FC" : "omnis.xcomp.framework", - "7F3125AB3002A6EB5EE34F1D937C08C261A59D3B" : "omnis.xcomp.example" - }, - "DVTSourceControlWorkspaceBlueprintNameKey" : "example_OS80", - "DVTSourceControlWorkspaceBlueprintVersion" : 204, - "DVTSourceControlWorkspaceBlueprintRelativePathToProjectKey" : "example_OS80.xcodeproj", - "DVTSourceControlWorkspaceBlueprintRemoteRepositoriesKey" : [ - { - "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/BastiaanOlij\/omnis.xcomp.example", - "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", - "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "7F3125AB3002A6EB5EE34F1D937C08C261A59D3B" - }, - { - "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/BastiaanOlij\/omnis.xcomp.framework", - "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", - "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "83859B19F24D8570D364771565ABFE47806DF8FC" - } - ] -} \ No newline at end of file diff --git a/example_OS80.xcodeproj/project.xcworkspace/xcuserdata/basolij.xcuserdatad/UserInterfaceState.xcuserstate b/example_OS80.xcodeproj/project.xcworkspace/xcuserdata/basolij.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index b89cff2..0000000 Binary files a/example_OS80.xcodeproj/project.xcworkspace/xcuserdata/basolij.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/example_OS80.xcodeproj/xcuserdata/basolij.xcuserdatad/xcschemes/UnicodeCore.xcscheme b/example_OS80.xcodeproj/xcuserdata/basolij.xcuserdatad/xcschemes/UnicodeCore.xcscheme deleted file mode 100644 index 0af5f84..0000000 --- a/example_OS80.xcodeproj/xcuserdata/basolij.xcuserdatad/xcschemes/UnicodeCore.xcscheme +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/example_OS80.xcodeproj/xcuserdata/basolij.xcuserdatad/xcschemes/xcschememanagement.plist b/example_OS80.xcodeproj/xcuserdata/basolij.xcuserdatad/xcschemes/xcschememanagement.plist deleted file mode 100644 index 0f6f2f3..0000000 --- a/example_OS80.xcodeproj/xcuserdata/basolij.xcuserdatad/xcschemes/xcschememanagement.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - SchemeUserState - - UnicodeCore.xcscheme - - orderHint - 0 - - - SuppressBuildableAutocreation - - 2DD7697317BBA5F4005F1CFB - - primary - - - - - diff --git a/example_OS81.vcxproj b/example_OS81.vcxproj deleted file mode 100644 index 7d94807..0000000 --- a/example_OS81.vcxproj +++ /dev/null @@ -1,324 +0,0 @@ - - - - - UNICODE Debug - Win32 - - - UNICODE Debug - x64 - - - UNICODE Release - Win32 - - - UNICODE Release - x64 - - - - {D377AD87-8C8E-47F3-987D-428CF82E73FF} - 10.0.15063.0 - - - - DynamicLibrary - v141 - false - - - DynamicLibrary - v141 - false - - - DynamicLibrary - v141 - false - - - DynamicLibrary - v141 - false - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>11.0.60315.1 - - - .\URel\ - .\URel\ - false - - - false - .\URel64\ - .\URel64\ - - - .\UDeb\ - .\UDeb\ - true - - - true - .\UDeb64\ - .\UDeb64\ - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - .\Release/GENERIC.tlb - - - - MinSpace - OnlyExplicitInline - ..\complib;%(AdditionalIncludeDirectories) - NDEBUG;WIN32;_WINDOWS;iswin32;isXCOMPLIB;NO_STRICT;isunicode;UNICODE;_CRT_SECURE_NO_DEPRECATE;_CRT_NON_CONFORMING_SWPRINTFS;_CRT_NONSTDC_NO_DEPRECATE;_UNICODE;%(PreprocessorDefinitions) - true - MultiThreadedDLL - 2Bytes - true - false - .\URel/GENERIC.pch - .\URel/ - .\URel/ - .\URel/ - Level3 - true - - - NDEBUG;isunicode;_UNICODE;UNICODE;%(PreprocessorDefinitions) - 0x0809 - - - odbc32.lib;odbccp32.lib;omnisu.lib;%(AdditionalDependencies) - .\URel/generic.dll - true - ..\ulibs;%(AdditionalLibraryDirectories) - libc.lib;%(IgnoreSpecificDefaultLibraries) - .\Generic.def - .\URel/GENERIC.pdb - Windows - - .\URel/GENERIC.lib - MachineX86 - false - - - true - .\URel/GENERIC.bsc - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - .\Release/GENERIC.tlb - - - - - MinSpace - OnlyExplicitInline - ..\complib;..\omnis.xcomp.framework;%(AdditionalIncludeDirectories) - NDEBUG;is64bit;_WINDOWS;iswin32;isXCOMPLIB;NO_STRICT;isunicode;UNICODE;_CRT_SECURE_NO_DEPRECATE;_CRT_NON_CONFORMING_SWPRINTFS;_CRT_NONSTDC_NO_DEPRECATE;_UNICODE;OMNISSDK=81;%(PreprocessorDefinitions) - true - MultiThreadedDLL - Default - true - false - .\URel64/example.pch - .\URel64/ - .\URel64/ - .\URel64/ - Level3 - true - - - NDEBUG;isunicode;_UNICODE;UNICODE;is64bit;%(PreprocessorDefinitions) - 0x0809 - - - odbc32.lib;odbccp32.lib;omnisu64.lib;%(AdditionalDependencies) - .\URel64/example.dll - true - ..\ulibs;%(AdditionalLibraryDirectories) - libc.lib;%(IgnoreSpecificDefaultLibraries) - .\example.def - .\URel64/example.pdb - Windows - - - .\URel64/example.lib - false - - - true - .\URel64/GENERIC.bsc - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - .\Debug/GENERIC.tlb - - - - Disabled - ..\complib;%(AdditionalIncludeDirectories) - _DEBUG;WIN32;_WINDOWS;iswin32;isXCOMPLIB;NO_STRICT;isunicode;_UNICODE;UNICODE;_CRT_SECURE_NO_DEPRECATE;_CRT_NON_CONFORMING_SWPRINTFS;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions) - true - MultiThreadedDebugDLL - 2Bytes - false - .\UDeb/GENERIC.pch - .\UDeb/ - .\UDeb/ - .\UDeb/ - Level3 - true - EditAndContinue - - - _DEBUG;isunicode;_UNICODE;UNICODE;%(PreprocessorDefinitions) - 0x0809 - - - odbc32.lib;odbccp32.lib;omnisu.lib;%(AdditionalDependencies) - .\UDeb/generic.dll - true - ..\ulibs;%(AdditionalLibraryDirectories) - libc.lib;%(IgnoreSpecificDefaultLibraries) - .\Generic.def - true - .\UDeb/GENERIC.pdb - Windows - - .\UDeb/GENERIC.lib - MachineX86 - - - true - .\UDeb/GENERIC.bsc - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - .\Debug/GENERIC.tlb - - - - - Disabled - ..\complib;..\omnis.xcomp.framework;%(AdditionalIncludeDirectories) - _DEBUG;is64bit;_WINDOWS;iswin32;isXCOMPLIB;NO_STRICT;isunicode;_UNICODE;UNICODE;_CRT_SECURE_NO_DEPRECATE;_CRT_NON_CONFORMING_SWPRINTFS;_CRT_NONSTDC_NO_DEPRECATE;OMNISSDK=81;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Default - false - .\UDeb64/example.pch - .\UDeb64/ - .\UDeb64/ - .\UDeb64/ - Level3 - true - ProgramDatabase - - - _DEBUG;isunicode;_UNICODE;UNICODE;is64bit;%(PreprocessorDefinitions) - 0x0809 - - - odbc32.lib;odbccp32.lib;omnisu64.lib;%(AdditionalDependencies) - .\UDeb64/example.dll - true - ..\ulibs;%(AdditionalLibraryDirectories) - libc.lib;%(IgnoreSpecificDefaultLibraries) - .\example.def - true - .\UDeb64/example.pdb - Windows - - - .\UDeb64/example.lib - - - true - .\UDeb64/GENERIC.bsc - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/example_OS81.vcxproj.filters b/example_OS81.vcxproj.filters deleted file mode 100644 index 5986325..0000000 --- a/example_OS81.vcxproj.filters +++ /dev/null @@ -1,87 +0,0 @@ - - - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - - - - - - - - - - - - - - - {f46b3caa-59da-41fa-aea0-0fc061e6e6e5} - - - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - omnis.xcomp.framework - - - - - - \ No newline at end of file diff --git a/examples/example_OS10.0.lbs b/examples/example.lbs similarity index 53% rename from examples/example_OS10.0.lbs rename to examples/example.lbs index e1190bb..2bd82e9 100644 Binary files a/examples/example_OS10.0.lbs and b/examples/example.lbs differ diff --git a/examples/example_OS61.lbs b/examples/example_OS61.lbs deleted file mode 100644 index 81348a0..0000000 Binary files a/examples/example_OS61.lbs and /dev/null differ diff --git a/examples/example_OS81.lbs b/examples/example_OS81.lbs deleted file mode 100644 index cbbe0f5..0000000 Binary files a/examples/example_OS81.lbs and /dev/null differ diff --git a/oExample_OS10.0.xcodeproj/project.pbxproj b/oExample.xcodeproj/project.pbxproj old mode 100644 new mode 100755 similarity index 57% rename from oExample_OS10.0.xcodeproj/project.pbxproj rename to oExample.xcodeproj/project.pbxproj index f2f86fb..ff17b35 --- a/oExample_OS10.0.xcodeproj/project.pbxproj +++ b/oExample.xcodeproj/project.pbxproj @@ -10,20 +10,20 @@ 2D7DE4B517CE03B300642BA9 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2D7DE4B217CE03B300642BA9 /* InfoPlist.strings */; }; 2DAD106F17BCEE60005A7F56 /* u_complib.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2DAD106E17BCEE60005A7F56 /* u_complib.framework */; }; 2DD7697817BBA5F4005F1CFB /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2DD7697717BBA5F4005F1CFB /* Cocoa.framework */; }; - E30917452207B36C00FB1039 /* oXCompLib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E30917312207B36B00FB1039 /* oXCompLib.cpp */; }; - E30917462207B36C00FB1039 /* oDrawingCanvas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E30917332207B36B00FB1039 /* oDrawingCanvas.cpp */; }; - E30917472207B36C00FB1039 /* oBaseNVComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E30917342207B36B00FB1039 /* oBaseNVComponent.cpp */; }; - E30917482207B36C00FB1039 /* FrameworkWndProc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E30917352207B36B00FB1039 /* FrameworkWndProc.cpp */; }; - E30917492207B36C00FB1039 /* qString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E30917392207B36B00FB1039 /* qString.cpp */; }; - E309174A2207B36C00FB1039 /* oBaseVisComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E309173B2207B36C00FB1039 /* oBaseVisComponent.cpp */; }; - E309174B2207B36C00FB1039 /* oUTF8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E309173F2207B36C00FB1039 /* oUTF8.cpp */; }; - E309174C2207B36C00FB1039 /* oRGBAImage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E30917432207B36C00FB1039 /* oRGBAImage.cpp */; }; - E309174D2207B36C00FB1039 /* oBaseComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E30917442207B36C00FB1039 /* oBaseComponent.cpp */; }; - E30917542207B46C00FB1039 /* oExample.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E30917512207B46C00FB1039 /* oExample.cpp */; }; - E30917552207B46C00FB1039 /* oNVExample.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E30917522207B46C00FB1039 /* oNVExample.cpp */; }; - E30917562207B46C00FB1039 /* example.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E30917532207B46C00FB1039 /* example.cpp */; }; - E309175B2207B48800FB1039 /* oExample.rc in Resources */ = {isa = PBXBuildFile; fileRef = E30917572207B48800FB1039 /* oExample.rc */; }; - E309175C2207B48800FB1039 /* oExample.bmp in Resources */ = {isa = PBXBuildFile; fileRef = E30917592207B48800FB1039 /* oExample.bmp */; }; + E3BB4EB827B9EBAA00A3AA81 /* oExample.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3BB4EB527B9EBAA00A3AA81 /* oExample.cpp */; }; + E3BB4EB927B9EBAA00A3AA81 /* oNVExample.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3BB4EB627B9EBAA00A3AA81 /* oNVExample.cpp */; }; + E3BB4EBA27B9EBAA00A3AA81 /* example.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3BB4EB727B9EBAA00A3AA81 /* example.cpp */; }; + E3BB4EBF27B9EBBD00A3AA81 /* oExample.rc in Resources */ = {isa = PBXBuildFile; fileRef = E3BB4EBB27B9EBBD00A3AA81 /* oExample.rc */; }; + E3BB4EC027B9EBBD00A3AA81 /* oExample.bmp in Resources */ = {isa = PBXBuildFile; fileRef = E3BB4EBD27B9EBBD00A3AA81 /* oExample.bmp */; }; + E3BB4ED627B9EC0A00A3AA81 /* oXCompLib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3BB4EC327B9EC0A00A3AA81 /* oXCompLib.cpp */; }; + E3BB4ED727B9EC0A00A3AA81 /* oBaseVisComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3BB4EC427B9EC0A00A3AA81 /* oBaseVisComponent.cpp */; }; + E3BB4ED827B9EC0A00A3AA81 /* oUTF8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3BB4EC527B9EC0A00A3AA81 /* oUTF8.cpp */; }; + E3BB4ED927B9EC0B00A3AA81 /* oBaseComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3BB4EC927B9EC0A00A3AA81 /* oBaseComponent.cpp */; }; + E3BB4EDA27B9EC0B00A3AA81 /* oBaseNVComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3BB4ECD27B9EC0A00A3AA81 /* oBaseNVComponent.cpp */; }; + E3BB4EDB27B9EC0B00A3AA81 /* oDrawingCanvas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3BB4ECF27B9EC0A00A3AA81 /* oDrawingCanvas.cpp */; }; + E3BB4EDC27B9EC0B00A3AA81 /* FrameworkWndProc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3BB4ED027B9EC0A00A3AA81 /* FrameworkWndProc.cpp */; }; + E3BB4EDD27B9EC0B00A3AA81 /* oRGBAImage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3BB4ED227B9EC0A00A3AA81 /* oRGBAImage.cpp */; }; + E3BB4EDE27B9EC0B00A3AA81 /* qString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3BB4ED527B9EC0A00A3AA81 /* qString.cpp */; }; /* End PBXBuildFile section */ /* Begin PBXBuildRule section */ @@ -32,11 +32,13 @@ compilerSpec = com.apple.compilers.proxy.script; filePatterns = "*.rc"; fileType = pattern.proxy; + inputFiles = ( + ); isEditable = 1; outputFiles = ( - "$(TEMP_FILE_DIR)/omnisrc/Localizable.strings", + "$(INPUT_FILE_DIR)/Localizable.strings", ); - script = "$PROJECT_DIR/../tools/omnisrc64.app/Contents/MacOS/omnisrc64 INPUT_FILE_PATH TEMP_FILE_DIR REZ_SEARCH_PATHS XCOMP\nif [ -f $TEMP_FILE_DIR/omnisrc/Bitmap.strings ]; then\ncp $TEMP_FILE_DIR/omnisrc/Bitmap.strings $INSTALL_DIR/$CONTENTS_FOLDER_PATH/Resources\nfi\nshopt -s nullglob\nif [ ! -z \"`echo $TEMP_FILE_DIR/omnisrc/*.PNG`\" ]; then\ncp $TEMP_FILE_DIR/omnisrc/*.PNG $INSTALL_DIR/$CONTENTS_FOLDER_PATH/Resources\nfi\n"; + script = "$PROJECT_DIR/thirdparty/omnis.sdk/mac/tools/omnisrc64.app/Contents/MacOS/omnisrc64 INPUT_FILE_PATH TEMP_FILE_DIR REZ_SEARCH_PATHS XCOMP\nif [ -f $TEMP_FILE_DIR/omnisrc/Bitmap.strings ]; then\ncp $TEMP_FILE_DIR/omnisrc/Bitmap.strings $INSTALL_DIR/$CONTENTS_FOLDER_PATH/Resources\nfi\ncp -R $TEMP_FILE_DIR/omnisrc/ $INPUT_FILE_DIR\n\nshopt -s nullglob\nif [ ! -z \"`echo $TEMP_FILE_DIR/omnisrc/*.PNG`\" ]; then\ncp $TEMP_FILE_DIR/omnisrc/*.PNG $INSTALL_DIR/$CONTENTS_FOLDER_PATH/Resources\nfi\ncp -R $TEMP_FILE_DIR/omnisrc/ $INPUT_FILE_DIR\n"; }; /* End PBXBuildRule section */ @@ -48,34 +50,34 @@ 2DD7697A17BBA5F4005F1CFB /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; }; 2DD7697B17BBA5F4005F1CFB /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; }; 2DD7697C17BBA5F4005F1CFB /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; - E30917312207B36B00FB1039 /* oXCompLib.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oXCompLib.cpp; path = ../omnis.xcomp.framework/oXCompLib.cpp; sourceTree = ""; }; - E30917322207B36B00FB1039 /* oRGBAImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oRGBAImage.h; path = ../omnis.xcomp.framework/oRGBAImage.h; sourceTree = ""; }; - E30917332207B36B00FB1039 /* oDrawingCanvas.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oDrawingCanvas.cpp; path = ../omnis.xcomp.framework/oDrawingCanvas.cpp; sourceTree = ""; }; - E30917342207B36B00FB1039 /* oBaseNVComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oBaseNVComponent.cpp; path = ../omnis.xcomp.framework/oBaseNVComponent.cpp; sourceTree = ""; }; - E30917352207B36B00FB1039 /* FrameworkWndProc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = FrameworkWndProc.cpp; path = ../omnis.xcomp.framework/FrameworkWndProc.cpp; sourceTree = ""; }; - E30917362207B36B00FB1039 /* oUTF8.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oUTF8.h; path = ../omnis.xcomp.framework/oUTF8.h; sourceTree = ""; }; - E30917372207B36B00FB1039 /* qArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qArray.h; path = ../omnis.xcomp.framework/qArray.h; sourceTree = ""; }; - E30917382207B36B00FB1039 /* oBaseComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oBaseComponent.h; path = ../omnis.xcomp.framework/oBaseComponent.h; sourceTree = ""; }; - E30917392207B36B00FB1039 /* qString.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = qString.cpp; path = ../omnis.xcomp.framework/qString.cpp; sourceTree = ""; }; - E309173A2207B36C00FB1039 /* xCompStandardIncludes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = xCompStandardIncludes.h; path = ../omnis.xcomp.framework/xCompStandardIncludes.h; sourceTree = ""; }; - E309173B2207B36C00FB1039 /* oBaseVisComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oBaseVisComponent.cpp; path = ../omnis.xcomp.framework/oBaseVisComponent.cpp; sourceTree = ""; }; - E309173C2207B36C00FB1039 /* oDrawingCanvas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oDrawingCanvas.h; path = ../omnis.xcomp.framework/oDrawingCanvas.h; sourceTree = ""; }; - E309173D2207B36C00FB1039 /* omnis.xcomp.framework.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = omnis.xcomp.framework.h; path = ../omnis.xcomp.framework/omnis.xcomp.framework.h; sourceTree = ""; }; - E309173E2207B36C00FB1039 /* qString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qString.h; path = ../omnis.xcomp.framework/qString.h; sourceTree = ""; }; - E309173F2207B36C00FB1039 /* oUTF8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oUTF8.cpp; path = ../omnis.xcomp.framework/oUTF8.cpp; sourceTree = ""; }; - E30917402207B36C00FB1039 /* oBaseVisComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oBaseVisComponent.h; path = ../omnis.xcomp.framework/oBaseVisComponent.h; sourceTree = ""; }; - E30917412207B36C00FB1039 /* oXCompLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oXCompLib.h; path = ../omnis.xcomp.framework/oXCompLib.h; sourceTree = ""; }; - E30917422207B36C00FB1039 /* oBaseNVComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oBaseNVComponent.h; path = ../omnis.xcomp.framework/oBaseNVComponent.h; sourceTree = ""; }; - E30917432207B36C00FB1039 /* oRGBAImage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oRGBAImage.cpp; path = ../omnis.xcomp.framework/oRGBAImage.cpp; sourceTree = ""; }; - E30917442207B36C00FB1039 /* oBaseComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oBaseComponent.cpp; path = ../omnis.xcomp.framework/oBaseComponent.cpp; sourceTree = ""; }; - E309174E2207B46000FB1039 /* example.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = example.h; path = Src/example.h; sourceTree = ""; }; - E309174F2207B46000FB1039 /* oNVExample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oNVExample.h; path = Src/oNVExample.h; sourceTree = ""; }; - E30917502207B46000FB1039 /* oExample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oExample.h; path = Src/oExample.h; sourceTree = ""; }; - E30917512207B46C00FB1039 /* oExample.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oExample.cpp; path = Src/oExample.cpp; sourceTree = SOURCE_ROOT; }; - E30917522207B46C00FB1039 /* oNVExample.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oNVExample.cpp; path = Src/oNVExample.cpp; sourceTree = SOURCE_ROOT; }; - E30917532207B46C00FB1039 /* example.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = example.cpp; path = Src/example.cpp; sourceTree = SOURCE_ROOT; }; - E30917582207B48800FB1039 /* English */ = {isa = PBXFileReference; explicitFileType = text; name = English; path = English.lproj/oExample.rc; sourceTree = ""; }; - E309175A2207B48800FB1039 /* English */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; name = English; path = English.lproj/oExample.bmp; sourceTree = ""; }; + E3BB4EB227B9EB9C00A3AA81 /* oNVExample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oNVExample.h; path = Src/oNVExample.h; sourceTree = ""; }; + E3BB4EB327B9EB9C00A3AA81 /* oExample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oExample.h; path = Src/oExample.h; sourceTree = ""; }; + E3BB4EB427B9EB9C00A3AA81 /* example.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = example.h; path = Src/example.h; sourceTree = ""; }; + E3BB4EB527B9EBAA00A3AA81 /* oExample.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oExample.cpp; path = Src/oExample.cpp; sourceTree = SOURCE_ROOT; }; + E3BB4EB627B9EBAA00A3AA81 /* oNVExample.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oNVExample.cpp; path = Src/oNVExample.cpp; sourceTree = SOURCE_ROOT; }; + E3BB4EB727B9EBAA00A3AA81 /* example.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = example.cpp; path = Src/example.cpp; sourceTree = SOURCE_ROOT; }; + E3BB4EBC27B9EBBD00A3AA81 /* English */ = {isa = PBXFileReference; lastKnownFileType = text; name = English; path = English.lproj/oExample.rc; sourceTree = ""; }; + E3BB4EBE27B9EBBD00A3AA81 /* English */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; name = English; path = English.lproj/oExample.bmp; sourceTree = ""; }; + E3BB4EC227B9EC0A00A3AA81 /* oUTF8.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oUTF8.h; path = thirdparty/omnis.xcomp.framework/oUTF8.h; sourceTree = SOURCE_ROOT; }; + E3BB4EC327B9EC0A00A3AA81 /* oXCompLib.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oXCompLib.cpp; path = thirdparty/omnis.xcomp.framework/oXCompLib.cpp; sourceTree = SOURCE_ROOT; }; + E3BB4EC427B9EC0A00A3AA81 /* oBaseVisComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oBaseVisComponent.cpp; path = thirdparty/omnis.xcomp.framework/oBaseVisComponent.cpp; sourceTree = SOURCE_ROOT; }; + E3BB4EC527B9EC0A00A3AA81 /* oUTF8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oUTF8.cpp; path = thirdparty/omnis.xcomp.framework/oUTF8.cpp; sourceTree = SOURCE_ROOT; }; + E3BB4EC627B9EC0A00A3AA81 /* qString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qString.h; path = thirdparty/omnis.xcomp.framework/qString.h; sourceTree = SOURCE_ROOT; }; + E3BB4EC727B9EC0A00A3AA81 /* oBaseNVComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oBaseNVComponent.h; path = thirdparty/omnis.xcomp.framework/oBaseNVComponent.h; sourceTree = SOURCE_ROOT; }; + E3BB4EC827B9EC0A00A3AA81 /* oXCompLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oXCompLib.h; path = thirdparty/omnis.xcomp.framework/oXCompLib.h; sourceTree = SOURCE_ROOT; }; + E3BB4EC927B9EC0A00A3AA81 /* oBaseComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oBaseComponent.cpp; path = thirdparty/omnis.xcomp.framework/oBaseComponent.cpp; sourceTree = SOURCE_ROOT; }; + E3BB4ECA27B9EC0A00A3AA81 /* oDrawingCanvas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oDrawingCanvas.h; path = thirdparty/omnis.xcomp.framework/oDrawingCanvas.h; sourceTree = SOURCE_ROOT; }; + E3BB4ECB27B9EC0A00A3AA81 /* xCompStandardIncludes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = xCompStandardIncludes.h; path = thirdparty/omnis.xcomp.framework/xCompStandardIncludes.h; sourceTree = SOURCE_ROOT; }; + E3BB4ECC27B9EC0A00A3AA81 /* oBaseVisComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oBaseVisComponent.h; path = thirdparty/omnis.xcomp.framework/oBaseVisComponent.h; sourceTree = SOURCE_ROOT; }; + E3BB4ECD27B9EC0A00A3AA81 /* oBaseNVComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oBaseNVComponent.cpp; path = thirdparty/omnis.xcomp.framework/oBaseNVComponent.cpp; sourceTree = SOURCE_ROOT; }; + E3BB4ECE27B9EC0A00A3AA81 /* qArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qArray.h; path = thirdparty/omnis.xcomp.framework/qArray.h; sourceTree = SOURCE_ROOT; }; + E3BB4ECF27B9EC0A00A3AA81 /* oDrawingCanvas.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oDrawingCanvas.cpp; path = thirdparty/omnis.xcomp.framework/oDrawingCanvas.cpp; sourceTree = SOURCE_ROOT; }; + E3BB4ED027B9EC0A00A3AA81 /* FrameworkWndProc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = FrameworkWndProc.cpp; path = thirdparty/omnis.xcomp.framework/FrameworkWndProc.cpp; sourceTree = SOURCE_ROOT; }; + E3BB4ED127B9EC0A00A3AA81 /* oBaseComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oBaseComponent.h; path = thirdparty/omnis.xcomp.framework/oBaseComponent.h; sourceTree = SOURCE_ROOT; }; + E3BB4ED227B9EC0A00A3AA81 /* oRGBAImage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oRGBAImage.cpp; path = thirdparty/omnis.xcomp.framework/oRGBAImage.cpp; sourceTree = SOURCE_ROOT; }; + E3BB4ED327B9EC0A00A3AA81 /* oRGBAImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oRGBAImage.h; path = thirdparty/omnis.xcomp.framework/oRGBAImage.h; sourceTree = SOURCE_ROOT; }; + E3BB4ED427B9EC0A00A3AA81 /* omnis.xcomp.framework.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = omnis.xcomp.framework.h; path = thirdparty/omnis.xcomp.framework/omnis.xcomp.framework.h; sourceTree = SOURCE_ROOT; }; + E3BB4ED527B9EC0A00A3AA81 /* qString.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = qString.cpp; path = thirdparty/omnis.xcomp.framework/qString.cpp; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -94,9 +96,9 @@ 2D3F845B17C50A43008A8E5D /* Headers */ = { isa = PBXGroup; children = ( - E309174E2207B46000FB1039 /* example.h */, - E30917502207B46000FB1039 /* oExample.h */, - E309174F2207B46000FB1039 /* oNVExample.h */, + E3BB4EB427B9EB9C00A3AA81 /* example.h */, + E3BB4EB327B9EB9C00A3AA81 /* oExample.h */, + E3BB4EB227B9EB9C00A3AA81 /* oNVExample.h */, ); name = Headers; sourceTree = ""; @@ -104,8 +106,8 @@ 2D7DE4AF17CE02C100642BA9 /* Resources */ = { isa = PBXGroup; children = ( - E30917592207B48800FB1039 /* oExample.bmp */, - E30917572207B48800FB1039 /* oExample.rc */, + E3BB4EBD27B9EBBD00A3AA81 /* oExample.bmp */, + E3BB4EBB27B9EBBD00A3AA81 /* oExample.rc */, 2D7DE4B217CE03B300642BA9 /* InfoPlist.strings */, ); name = Resources; @@ -114,7 +116,7 @@ 2DD7696B17BBA5F4005F1CFB = { isa = PBXGroup; children = ( - E30917302207B33300FB1039 /* omnis.xcomp.frameworks */, + E3BB4EC127B9EBE200A3AA81 /* omnis.xcomp.frameworks */, 2D3F845B17C50A43008A8E5D /* Headers */, 2DD7697D17BBA5F4005F1CFB /* Source */, 2D7DE4AF17CE02C100642BA9 /* Resources */, @@ -154,38 +156,39 @@ 2DD7697D17BBA5F4005F1CFB /* Source */ = { isa = PBXGroup; children = ( - E30917532207B46C00FB1039 /* example.cpp */, - E30917512207B46C00FB1039 /* oExample.cpp */, - E30917522207B46C00FB1039 /* oNVExample.cpp */, + E3BB4EB727B9EBAA00A3AA81 /* example.cpp */, + E3BB4EB527B9EBAA00A3AA81 /* oExample.cpp */, + E3BB4EB627B9EBAA00A3AA81 /* oNVExample.cpp */, ); name = Source; + path = generic; sourceTree = ""; }; - E30917302207B33300FB1039 /* omnis.xcomp.frameworks */ = { + E3BB4EC127B9EBE200A3AA81 /* omnis.xcomp.frameworks */ = { isa = PBXGroup; children = ( - E30917352207B36B00FB1039 /* FrameworkWndProc.cpp */, - E30917442207B36C00FB1039 /* oBaseComponent.cpp */, - E30917382207B36B00FB1039 /* oBaseComponent.h */, - E30917342207B36B00FB1039 /* oBaseNVComponent.cpp */, - E30917422207B36C00FB1039 /* oBaseNVComponent.h */, - E309173B2207B36C00FB1039 /* oBaseVisComponent.cpp */, - E30917402207B36C00FB1039 /* oBaseVisComponent.h */, - E30917332207B36B00FB1039 /* oDrawingCanvas.cpp */, - E309173C2207B36C00FB1039 /* oDrawingCanvas.h */, - E309173D2207B36C00FB1039 /* omnis.xcomp.framework.h */, - E30917432207B36C00FB1039 /* oRGBAImage.cpp */, - E30917322207B36B00FB1039 /* oRGBAImage.h */, - E309173F2207B36C00FB1039 /* oUTF8.cpp */, - E30917362207B36B00FB1039 /* oUTF8.h */, - E30917312207B36B00FB1039 /* oXCompLib.cpp */, - E30917412207B36C00FB1039 /* oXCompLib.h */, - E30917372207B36B00FB1039 /* qArray.h */, - E30917392207B36B00FB1039 /* qString.cpp */, - E309173E2207B36C00FB1039 /* qString.h */, - E309173A2207B36C00FB1039 /* xCompStandardIncludes.h */, + E3BB4ED027B9EC0A00A3AA81 /* FrameworkWndProc.cpp */, + E3BB4EC927B9EC0A00A3AA81 /* oBaseComponent.cpp */, + E3BB4ED127B9EC0A00A3AA81 /* oBaseComponent.h */, + E3BB4ECD27B9EC0A00A3AA81 /* oBaseNVComponent.cpp */, + E3BB4EC727B9EC0A00A3AA81 /* oBaseNVComponent.h */, + E3BB4EC427B9EC0A00A3AA81 /* oBaseVisComponent.cpp */, + E3BB4ECC27B9EC0A00A3AA81 /* oBaseVisComponent.h */, + E3BB4ECF27B9EC0A00A3AA81 /* oDrawingCanvas.cpp */, + E3BB4ECA27B9EC0A00A3AA81 /* oDrawingCanvas.h */, + E3BB4ED427B9EC0A00A3AA81 /* omnis.xcomp.framework.h */, + E3BB4ED227B9EC0A00A3AA81 /* oRGBAImage.cpp */, + E3BB4ED327B9EC0A00A3AA81 /* oRGBAImage.h */, + E3BB4EC527B9EC0A00A3AA81 /* oUTF8.cpp */, + E3BB4EC227B9EC0A00A3AA81 /* oUTF8.h */, + E3BB4EC327B9EC0A00A3AA81 /* oXCompLib.cpp */, + E3BB4EC827B9EC0A00A3AA81 /* oXCompLib.h */, + E3BB4ECE27B9EC0A00A3AA81 /* qArray.h */, + E3BB4ED527B9EC0A00A3AA81 /* qString.cpp */, + E3BB4EC627B9EC0A00A3AA81 /* qString.h */, + E3BB4ECB27B9EC0A00A3AA81 /* xCompStandardIncludes.h */, ); - name = omnis.xcomp.frameworks; + path = omnis.xcomp.frameworks; sourceTree = ""; }; /* End PBXGroup section */ @@ -218,7 +221,7 @@ LastUpgradeCheck = 0460; ORGANIZATIONNAME = "Omnis Software Ltd"; }; - buildConfigurationList = 2DD7696F17BBA5F4005F1CFB /* Build configuration list for PBXProject "oExample_OS10.0" */; + buildConfigurationList = 2DD7696F17BBA5F4005F1CFB /* Build configuration list for PBXProject "oExample" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = English; hasScannedForEncodings = 0; @@ -241,9 +244,9 @@ isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - E309175C2207B48800FB1039 /* oExample.bmp in Resources */, + E3BB4EC027B9EBBD00A3AA81 /* oExample.bmp in Resources */, 2D7DE4B517CE03B300642BA9 /* InfoPlist.strings in Resources */, - E309175B2207B48800FB1039 /* oExample.rc in Resources */, + E3BB4EBF27B9EBBD00A3AA81 /* oExample.rc in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -254,18 +257,18 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E30917562207B46C00FB1039 /* example.cpp in Sources */, - E309174D2207B36C00FB1039 /* oBaseComponent.cpp in Sources */, - E309174B2207B36C00FB1039 /* oUTF8.cpp in Sources */, - E30917542207B46C00FB1039 /* oExample.cpp in Sources */, - E309174A2207B36C00FB1039 /* oBaseVisComponent.cpp in Sources */, - E30917492207B36C00FB1039 /* qString.cpp in Sources */, - E309174C2207B36C00FB1039 /* oRGBAImage.cpp in Sources */, - E30917462207B36C00FB1039 /* oDrawingCanvas.cpp in Sources */, - E30917482207B36C00FB1039 /* FrameworkWndProc.cpp in Sources */, - E30917472207B36C00FB1039 /* oBaseNVComponent.cpp in Sources */, - E30917552207B46C00FB1039 /* oNVExample.cpp in Sources */, - E30917452207B36C00FB1039 /* oXCompLib.cpp in Sources */, + E3BB4EDE27B9EC0B00A3AA81 /* qString.cpp in Sources */, + E3BB4ED927B9EC0B00A3AA81 /* oBaseComponent.cpp in Sources */, + E3BB4ED727B9EC0A00A3AA81 /* oBaseVisComponent.cpp in Sources */, + E3BB4EDC27B9EC0B00A3AA81 /* FrameworkWndProc.cpp in Sources */, + E3BB4EBA27B9EBAA00A3AA81 /* example.cpp in Sources */, + E3BB4ED827B9EC0A00A3AA81 /* oUTF8.cpp in Sources */, + E3BB4EDB27B9EC0B00A3AA81 /* oDrawingCanvas.cpp in Sources */, + E3BB4EDD27B9EC0B00A3AA81 /* oRGBAImage.cpp in Sources */, + E3BB4EB927B9EBAA00A3AA81 /* oNVExample.cpp in Sources */, + E3BB4EB827B9EBAA00A3AA81 /* oExample.cpp in Sources */, + E3BB4EDA27B9EC0B00A3AA81 /* oBaseNVComponent.cpp in Sources */, + E3BB4ED627B9EC0A00A3AA81 /* oXCompLib.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -280,18 +283,18 @@ name = InfoPlist.strings; sourceTree = ""; }; - E30917572207B48800FB1039 /* oExample.rc */ = { + E3BB4EBB27B9EBBD00A3AA81 /* oExample.rc */ = { isa = PBXVariantGroup; children = ( - E30917582207B48800FB1039 /* English */, + E3BB4EBC27B9EBBD00A3AA81 /* English */, ); name = oExample.rc; sourceTree = ""; }; - E30917592207B48800FB1039 /* oExample.bmp */ = { + E3BB4EBD27B9EBBD00A3AA81 /* oExample.bmp */ = { isa = PBXVariantGroup; children = ( - E309175A2207B48800FB1039 /* English */, + E3BB4EBE27B9EBBD00A3AA81 /* English */, ); name = oExample.bmp; sourceTree = ""; @@ -312,7 +315,8 @@ CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CONFIGURATION_BUILD_DIR = $PROJECT_DIR/../_OSXUnicodeDbg; + CODE_SIGN_IDENTITY = ""; + CONFIGURATION_BUILD_DIR = $PROJECT_DIR/_OSXUnicodeDbg; COPY_PHASE_STRIP = NO; DEBUG_INFORMATION_FORMAT = dwarf; GCC_C_LANGUAGE_STANDARD = "compiler-default"; @@ -329,12 +333,13 @@ GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.9; + MACOSX_DEPLOYMENT_TARGET = 10.11; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = ( "-fshort-wchar", "-Dismach_o", "-Wno-comment", + "-DOMNISSDK=102", ); PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO; REZ_SEARCH_PATHS = ( @@ -359,7 +364,8 @@ CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CONFIGURATION_BUILD_DIR = $PROJECT_DIR/../_OSXUnicode; + CODE_SIGN_IDENTITY = ""; + CONFIGURATION_BUILD_DIR = $PROJECT_DIR/_OSXUnicode; COPY_PHASE_STRIP = YES; DEBUG_INFORMATION_FORMAT = dwarf; GCC_C_LANGUAGE_STANDARD = "compiler-default"; @@ -370,11 +376,12 @@ GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.9; + MACOSX_DEPLOYMENT_TARGET = 10.11; OTHER_CFLAGS = ( "-fshort-wchar", "-Dismach_o", "-Wno-comment", + "-DOMNISSDK=102", ); PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO; REZ_SEARCH_PATHS = ( @@ -389,26 +396,23 @@ 2DD7698717BBA5F4005F1CFB /* Development */ = { isa = XCBuildConfiguration; buildSettings = { + CLANG_CXX_LANGUAGE_STANDARD = "c++0x"; + CLANG_CXX_LIBRARY = "libc++"; COMBINE_HIDPI_IMAGES = YES; CONFIGURATION_TEMP_DIR = "$(PROJECT_DIR)"; DSTROOT = /; EXPORTED_SYMBOLS_FILE = ""; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", - "\"$(SRCROOT)/../complib\"", + "\"$(SRCROOT)/thirdparty/omnis.sdk/mac/complib\"", ); GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = $PROJECT_DIR/../complib/u_complib.framework/Headers/carbnuni.h; + GCC_PREFIX_HEADER = $PROJECT_DIR/thirdparty/omnis.sdk/mac/complib/u_complib.framework/Headers/carbnuni.h; GENERATE_PKGINFO_FILE = YES; - HEADER_SEARCH_PATHS = $PROJECT_DIR/../complib/u_complib.framework/Headers; + HEADER_SEARCH_PATHS = $PROJECT_DIR/thirdparty/omnis.sdk/mac/complib/u_complib.framework/Headers; INFOPLIST_FILE = $PROJECT_DIR/Info.plist; - INSTALL_PATH = $PROJECT_DIR/../_OSXUnicodeDbg; - OTHER_CFLAGS = ( - "-fshort-wchar", - "-Dismach_o", - "-Wno-comment", - "-DOMNISSDK=100", - ); + INSTALL_PATH = $PROJECT_DIR/_OSXUnicodeDbg; + MACOSX_DEPLOYMENT_TARGET = 10.11; OTHER_LDFLAGS = ""; PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO; PRODUCT_BUNDLE_IDENTIFIER = omnis.xcomp.example; @@ -420,26 +424,23 @@ 2DD7698817BBA5F4005F1CFB /* Deployment */ = { isa = XCBuildConfiguration; buildSettings = { + CLANG_CXX_LANGUAGE_STANDARD = "c++0x"; + CLANG_CXX_LIBRARY = "libc++"; COMBINE_HIDPI_IMAGES = YES; CONFIGURATION_TEMP_DIR = "$(PROJECT_DIR)"; DSTROOT = /; EXPORTED_SYMBOLS_FILE = ""; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", - "\"$(SRCROOT)/../complib\"", + "\"$(SRCROOT)/thirdparty/omnis.sdk/mac/complib\"", ); GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = $PROJECT_DIR/../complib/u_complib.framework/Headers/carbnuni.h; + GCC_PREFIX_HEADER = $PROJECT_DIR/thirdparty/omnis.sdk/mac/complib/u_complib.framework/Headers/carbnuni.h; GENERATE_PKGINFO_FILE = YES; - HEADER_SEARCH_PATHS = $PROJECT_DIR/../complib/u_complib.framework/Headers; + HEADER_SEARCH_PATHS = $PROJECT_DIR/thirdparty/omnis.sdk/mac/complib/u_complib.framework/Headers; INFOPLIST_FILE = $PROJECT_DIR/Info.plist; - INSTALL_PATH = $PROJECT_DIR/../_OSXUnicode; - OTHER_CFLAGS = ( - "-fshort-wchar", - "-Dismach_o", - "-Wno-comment", - "-DOMNISSDK=100", - ); + INSTALL_PATH = $PROJECT_DIR/_OSXUnicode; + MACOSX_DEPLOYMENT_TARGET = 10.11; OTHER_LDFLAGS = ""; PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO; PRODUCT_BUNDLE_IDENTIFIER = omnis.xcomp.example; @@ -451,7 +452,7 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 2DD7696F17BBA5F4005F1CFB /* Build configuration list for PBXProject "oExample_OS10.0" */ = { + 2DD7696F17BBA5F4005F1CFB /* Build configuration list for PBXProject "oExample" */ = { isa = XCConfigurationList; buildConfigurations = ( 2DD7698417BBA5F4005F1CFB /* Development */, diff --git a/oExample_OS10.0.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/oExample_OS10.0.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a..0000000 --- a/oExample_OS10.0.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/oExample_OS10.0.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/oExample_OS10.0.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d9810..0000000 --- a/oExample_OS10.0.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/oExample_OS10.0.xcodeproj/project.xcworkspace/xcuserdata/bastiaanolij.xcuserdatad/UserInterfaceState.xcuserstate b/oExample_OS10.0.xcodeproj/project.xcworkspace/xcuserdata/bastiaanolij.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index 79d3e93..0000000 Binary files a/oExample_OS10.0.xcodeproj/project.xcworkspace/xcuserdata/bastiaanolij.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/oExample_OS10.0.xcodeproj/xcshareddata/xcschemes/UnicodeCore.xcscheme b/oExample_OS10.0.xcodeproj/xcshareddata/xcschemes/UnicodeCore.xcscheme deleted file mode 100644 index b36fd36..0000000 --- a/oExample_OS10.0.xcodeproj/xcshareddata/xcschemes/UnicodeCore.xcscheme +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/oExample_OS10.0.xcodeproj/xcuserdata/bastiaanolij.xcuserdatad/xcschemes/xcschememanagement.plist b/oExample_OS10.0.xcodeproj/xcuserdata/bastiaanolij.xcuserdatad/xcschemes/xcschememanagement.plist deleted file mode 100644 index 74c37dc..0000000 --- a/oExample_OS10.0.xcodeproj/xcuserdata/bastiaanolij.xcuserdatad/xcschemes/xcschememanagement.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - SchemeUserState - - UnicodeCore.xcscheme_^#shared#^_ - - orderHint - 0 - - - SuppressBuildableAutocreation - - 2DD7697317BBA5F4005F1CFB - - primary - - - - - diff --git a/oExample_OS6.xcodeproj/project.pbxproj b/oExample_OS6.xcodeproj/project.pbxproj deleted file mode 100755 index 6efe0a8..0000000 --- a/oExample_OS6.xcodeproj/project.pbxproj +++ /dev/null @@ -1,494 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXAggregateTarget section */ - 96D355F20908DD62006B6436 /* ReleaseBuild */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 96D355F30908DD80006B6436 /* Build configuration list for PBXAggregateTarget "ReleaseBuild" */; - buildPhases = ( - ); - dependencies = ( - 9658838409BC64BB0063770F /* PBXTargetDependency */, - ); - name = ReleaseBuild; - productName = ReleaseBuild; - }; -/* End PBXAggregateTarget section */ - -/* Begin PBXBuildFile section */ - 96CA4E550907E8CC00C234AA /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C167DFE841241C02AAC07 /* InfoPlist.strings */; }; - 96CA4E5A0907E8CC00C234AA /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 08EA7FFBFE8413EDC02AAC07 /* Carbon.framework */; }; - 96CA4E660907EB0700C234AA /* u_complib.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 96CA4E650907EB0700C234AA /* u_complib.framework */; }; - AC1FE41D18D07ACD007C0416 /* oBaseNVComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC1FE41818D07ACD007C0416 /* oBaseNVComponent.cpp */; }; - AC1FE41E18D07ACD007C0416 /* oBaseVisComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC1FE41A18D07ACD007C0416 /* oBaseVisComponent.cpp */; }; - AC3440DC191AE0CC00FF606C /* oDrawingCanvas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC3440DA191AE0CC00FF606C /* oDrawingCanvas.cpp */; }; - AC3906E317CD7F40007481A5 /* oExample.rc in Resources */ = {isa = PBXBuildFile; fileRef = AC3906D917CD7EA8007481A5 /* oExample.rc */; }; - AC4B180617CC557D00E9447A /* FrameworkWndProc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC4B17FA17CC557D00E9447A /* FrameworkWndProc.cpp */; }; - AC4B180717CC557D00E9447A /* oBaseComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC4B17FB17CC557D00E9447A /* oBaseComponent.cpp */; }; - AC4B180817CC557D00E9447A /* oUTF8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC4B17FE17CC557D00E9447A /* oUTF8.cpp */; }; - AC4B180917CC557D00E9447A /* oXCompLib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC4B180017CC557D00E9447A /* oXCompLib.cpp */; }; - AC4B180A17CC557D00E9447A /* qString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC4B180317CC557D00E9447A /* qString.cpp */; }; - AC4B181117CC55A800E9447A /* example.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC4B180E17CC55A800E9447A /* example.cpp */; }; - AC4B181217CC55A800E9447A /* oExample.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC4B180F17CC55A800E9447A /* oExample.cpp */; }; - AC4B181317CC55A800E9447A /* oNVExample.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC4B181017CC55A800E9447A /* oNVExample.cpp */; }; - AC4B181817CC55C100E9447A /* oExample.bmp in Resources */ = {isa = PBXBuildFile; fileRef = AC4B181417CC55C100E9447A /* oExample.bmp */; }; -/* End PBXBuildFile section */ - -/* Begin PBXBuildRule section */ - 96CA4E5C0907E8CC00C234AA /* PBXBuildRule */ = { - isa = PBXBuildRule; - compilerSpec = com.apple.compilers.proxy.script; - filePatterns = "*.rc"; - fileType = pattern.proxy; - isEditable = 1; - outputFiles = ( - "$(TEMP_FILE_DIR)/omnisrc/Localizable.strings", - ); - script = "/Developer/Tools/omnisrc.app/Contents/MacOS/omnisrc INPUT_FILE_PATH TEMP_FILE_DIR REZ_SEARCH_PATHS XCOMP\ncp $TEMP_FILE_DIR/omnisrc/xcomp.rsrc $INSTALL_DIR/$CONTENTS_FOLDER_PATH/Resources"; - }; -/* End PBXBuildRule section */ - -/* Begin PBXContainerItemProxy section */ - 9658838309BC64BB0063770F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 089C1669FE841209C02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 96CA4E530907E8CC00C234AA; - remoteInfo = UnicodeCore; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - 089C167EFE841241C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; - 08EA7FFBFE8413EDC02AAC07 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = ""; }; - 96CA4E610907E8CC00C234AA /* oExample.u_xcomp */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = oExample.u_xcomp; sourceTree = BUILT_PRODUCTS_DIR; }; - 96CA4E650907EB0700C234AA /* u_complib.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = u_complib.framework; path = ../complib/u_complib.framework; sourceTree = SOURCE_ROOT; }; - AC1FE41818D07ACD007C0416 /* oBaseNVComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oBaseNVComponent.cpp; path = ../omnis.xcomp.framework/oBaseNVComponent.cpp; sourceTree = SOURCE_ROOT; }; - AC1FE41918D07ACD007C0416 /* oBaseNVComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oBaseNVComponent.h; path = ../omnis.xcomp.framework/oBaseNVComponent.h; sourceTree = SOURCE_ROOT; }; - AC1FE41A18D07ACD007C0416 /* oBaseVisComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oBaseVisComponent.cpp; path = ../omnis.xcomp.framework/oBaseVisComponent.cpp; sourceTree = SOURCE_ROOT; }; - AC1FE41B18D07ACD007C0416 /* oBaseVisComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oBaseVisComponent.h; path = ../omnis.xcomp.framework/oBaseVisComponent.h; sourceTree = SOURCE_ROOT; }; - AC3440DA191AE0CC00FF606C /* oDrawingCanvas.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oDrawingCanvas.cpp; path = ../omnis.xcomp.framework/oDrawingCanvas.cpp; sourceTree = SOURCE_ROOT; }; - AC3440DB191AE0CC00FF606C /* oDrawingCanvas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oDrawingCanvas.h; path = ../omnis.xcomp.framework/oDrawingCanvas.h; sourceTree = SOURCE_ROOT; }; - AC3906DA17CD7EA8007481A5 /* English */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; name = English; path = English.lproj/oExample.rc; sourceTree = ""; }; - AC4B17FA17CC557D00E9447A /* FrameworkWndProc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = FrameworkWndProc.cpp; path = ../omnis.xcomp.framework/FrameworkWndProc.cpp; sourceTree = SOURCE_ROOT; }; - AC4B17FB17CC557D00E9447A /* oBaseComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oBaseComponent.cpp; path = ../omnis.xcomp.framework/oBaseComponent.cpp; sourceTree = SOURCE_ROOT; }; - AC4B17FC17CC557D00E9447A /* oBaseComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oBaseComponent.h; path = ../omnis.xcomp.framework/oBaseComponent.h; sourceTree = SOURCE_ROOT; }; - AC4B17FD17CC557D00E9447A /* omnis.xcomp.framework.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = omnis.xcomp.framework.h; path = ../omnis.xcomp.framework/omnis.xcomp.framework.h; sourceTree = SOURCE_ROOT; }; - AC4B17FE17CC557D00E9447A /* oUTF8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oUTF8.cpp; path = ../omnis.xcomp.framework/oUTF8.cpp; sourceTree = SOURCE_ROOT; }; - AC4B17FF17CC557D00E9447A /* oUTF8.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oUTF8.h; path = ../omnis.xcomp.framework/oUTF8.h; sourceTree = SOURCE_ROOT; }; - AC4B180017CC557D00E9447A /* oXCompLib.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oXCompLib.cpp; path = ../omnis.xcomp.framework/oXCompLib.cpp; sourceTree = SOURCE_ROOT; }; - AC4B180117CC557D00E9447A /* oXCompLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oXCompLib.h; path = ../omnis.xcomp.framework/oXCompLib.h; sourceTree = SOURCE_ROOT; }; - AC4B180217CC557D00E9447A /* qArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qArray.h; path = ../omnis.xcomp.framework/qArray.h; sourceTree = SOURCE_ROOT; }; - AC4B180317CC557D00E9447A /* qString.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = qString.cpp; path = ../omnis.xcomp.framework/qString.cpp; sourceTree = SOURCE_ROOT; }; - AC4B180417CC557D00E9447A /* qString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qString.h; path = ../omnis.xcomp.framework/qString.h; sourceTree = SOURCE_ROOT; }; - AC4B180517CC557D00E9447A /* xCompStandardIncludes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = xCompStandardIncludes.h; path = ../omnis.xcomp.framework/xCompStandardIncludes.h; sourceTree = SOURCE_ROOT; }; - AC4B180B17CC559500E9447A /* example.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = example.h; path = Src/example.h; sourceTree = ""; }; - AC4B180C17CC559500E9447A /* oExample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oExample.h; path = Src/oExample.h; sourceTree = ""; }; - AC4B180D17CC559500E9447A /* oNVExample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oNVExample.h; path = Src/oNVExample.h; sourceTree = ""; }; - AC4B180E17CC55A800E9447A /* example.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = example.cpp; path = Src/example.cpp; sourceTree = ""; }; - AC4B180F17CC55A800E9447A /* oExample.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oExample.cpp; path = Src/oExample.cpp; sourceTree = ""; }; - AC4B181017CC55A800E9447A /* oNVExample.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oNVExample.cpp; path = Src/oNVExample.cpp; sourceTree = ""; }; - AC4B181517CC55C100E9447A /* English */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; name = English; path = English.lproj/oExample.bmp; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 96CA4E590907E8CC00C234AA /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 96CA4E5A0907E8CC00C234AA /* Carbon.framework in Frameworks */, - 96CA4E660907EB0700C234AA /* u_complib.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 089C166AFE841209C02AAC07 /* xrandom */ = { - isa = PBXGroup; - children = ( - AC4B17F417CC555400E9447A /* omnis.xcomp.frameworks */, - 96D631340905093100E0F291 /* Headers */, - 08FB77ADFE841716C02AAC07 /* Source */, - 089C167CFE841241C02AAC07 /* Resources */, - 089C1671FE841209C02AAC07 /* External Frameworks and Libraries */, - 19C28FB4FE9D528D11CA2CBB /* Products */, - ); - name = xrandom; - sourceTree = ""; - }; - 089C1671FE841209C02AAC07 /* External Frameworks and Libraries */ = { - isa = PBXGroup; - children = ( - 96CA4E650907EB0700C234AA /* u_complib.framework */, - 08EA7FFBFE8413EDC02AAC07 /* Carbon.framework */, - ); - name = "External Frameworks and Libraries"; - sourceTree = ""; - }; - 089C167CFE841241C02AAC07 /* Resources */ = { - isa = PBXGroup; - children = ( - AC3906D917CD7EA8007481A5 /* oExample.rc */, - AC4B181417CC55C100E9447A /* oExample.bmp */, - 089C167DFE841241C02AAC07 /* InfoPlist.strings */, - ); - name = Resources; - sourceTree = ""; - }; - 08FB77ADFE841716C02AAC07 /* Source */ = { - isa = PBXGroup; - children = ( - AC4B180E17CC55A800E9447A /* example.cpp */, - AC4B180F17CC55A800E9447A /* oExample.cpp */, - AC4B181017CC55A800E9447A /* oNVExample.cpp */, - ); - name = Source; - sourceTree = ""; - }; - 19C28FB4FE9D528D11CA2CBB /* Products */ = { - isa = PBXGroup; - children = ( - 96CA4E610907E8CC00C234AA /* oExample.u_xcomp */, - ); - name = Products; - sourceTree = ""; - }; - 96D631340905093100E0F291 /* Headers */ = { - isa = PBXGroup; - children = ( - AC4B180B17CC559500E9447A /* example.h */, - AC4B180C17CC559500E9447A /* oExample.h */, - AC4B180D17CC559500E9447A /* oNVExample.h */, - ); - name = Headers; - sourceTree = ""; - }; - AC4B17F417CC555400E9447A /* omnis.xcomp.frameworks */ = { - isa = PBXGroup; - children = ( - AC3440DA191AE0CC00FF606C /* oDrawingCanvas.cpp */, - AC3440DB191AE0CC00FF606C /* oDrawingCanvas.h */, - AC1FE41818D07ACD007C0416 /* oBaseNVComponent.cpp */, - AC1FE41918D07ACD007C0416 /* oBaseNVComponent.h */, - AC1FE41A18D07ACD007C0416 /* oBaseVisComponent.cpp */, - AC1FE41B18D07ACD007C0416 /* oBaseVisComponent.h */, - AC4B17FA17CC557D00E9447A /* FrameworkWndProc.cpp */, - AC4B17FB17CC557D00E9447A /* oBaseComponent.cpp */, - AC4B17FC17CC557D00E9447A /* oBaseComponent.h */, - AC4B17FD17CC557D00E9447A /* omnis.xcomp.framework.h */, - AC4B17FE17CC557D00E9447A /* oUTF8.cpp */, - AC4B17FF17CC557D00E9447A /* oUTF8.h */, - AC4B180017CC557D00E9447A /* oXCompLib.cpp */, - AC4B180117CC557D00E9447A /* oXCompLib.h */, - AC4B180217CC557D00E9447A /* qArray.h */, - AC4B180317CC557D00E9447A /* qString.cpp */, - AC4B180417CC557D00E9447A /* qString.h */, - AC4B180517CC557D00E9447A /* xCompStandardIncludes.h */, - ); - name = omnis.xcomp.frameworks; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 96CA4E530907E8CC00C234AA /* UnicodeCore */ = { - isa = PBXNativeTarget; - buildConfigurationList = 96CA4E5D0907E8CC00C234AA /* Build configuration list for PBXNativeTarget "UnicodeCore" */; - buildPhases = ( - 96CA4E540907E8CC00C234AA /* Resources */, - 96CA4E570907E8CC00C234AA /* Sources */, - 96CA4E590907E8CC00C234AA /* Frameworks */, - ); - buildRules = ( - 96CA4E5C0907E8CC00C234AA /* PBXBuildRule */, - ); - dependencies = ( - ); - name = UnicodeCore; - productInstallPath = "$(HOME)/Library/Bundles"; - productName = xrandom; - productReference = 96CA4E610907E8CC00C234AA /* oExample.u_xcomp */; - productType = "com.apple.product-type.bundle"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 089C1669FE841209C02AAC07 /* Project object */ = { - isa = PBXProject; - attributes = { - LastUpgradeCheck = 0610; - }; - buildConfigurationList = 96CF455E08FBABD1003AA3FE /* Build configuration list for PBXProject "oExample_OS6" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 1; - knownRegions = ( - English, - Japanese, - French, - German, - english, - ); - mainGroup = 089C166AFE841209C02AAC07 /* xrandom */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 96CA4E530907E8CC00C234AA /* UnicodeCore */, - 96D355F20908DD62006B6436 /* ReleaseBuild */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 96CA4E540907E8CC00C234AA /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 96CA4E550907E8CC00C234AA /* InfoPlist.strings in Resources */, - AC4B181817CC55C100E9447A /* oExample.bmp in Resources */, - AC3906E317CD7F40007481A5 /* oExample.rc in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 96CA4E570907E8CC00C234AA /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - AC4B180617CC557D00E9447A /* FrameworkWndProc.cpp in Sources */, - AC4B180717CC557D00E9447A /* oBaseComponent.cpp in Sources */, - AC4B180817CC557D00E9447A /* oUTF8.cpp in Sources */, - AC4B180917CC557D00E9447A /* oXCompLib.cpp in Sources */, - AC4B180A17CC557D00E9447A /* qString.cpp in Sources */, - AC4B181117CC55A800E9447A /* example.cpp in Sources */, - AC4B181217CC55A800E9447A /* oExample.cpp in Sources */, - AC4B181317CC55A800E9447A /* oNVExample.cpp in Sources */, - AC1FE41D18D07ACD007C0416 /* oBaseNVComponent.cpp in Sources */, - AC1FE41E18D07ACD007C0416 /* oBaseVisComponent.cpp in Sources */, - AC3440DC191AE0CC00FF606C /* oDrawingCanvas.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 9658838409BC64BB0063770F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 96CA4E530907E8CC00C234AA /* UnicodeCore */; - targetProxy = 9658838309BC64BB0063770F /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin PBXVariantGroup section */ - 089C167DFE841241C02AAC07 /* InfoPlist.strings */ = { - isa = PBXVariantGroup; - children = ( - 089C167EFE841241C02AAC07 /* English */, - ); - name = InfoPlist.strings; - sourceTree = ""; - }; - AC3906D917CD7EA8007481A5 /* oExample.rc */ = { - isa = PBXVariantGroup; - children = ( - AC3906DA17CD7EA8007481A5 /* English */, - ); - name = oExample.rc; - sourceTree = ""; - }; - AC4B181417CC55C100E9447A /* oExample.bmp */ = { - isa = PBXVariantGroup; - children = ( - AC4B181517CC55C100E9447A /* English */, - ); - name = oExample.bmp; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 96CA4E5E0907E8CC00C234AA /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - BUILD_VARIANTS = normal; - COPY_PHASE_STRIP = NO; - DEPLOYMENT_LOCATION = YES; - FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../complib"; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = NO; - GCC_PREFIX_HEADER = $PROJECT_DIR/../complib/u_complib.framework/Headers/carbnuni.h; - GENERATE_PKGINFO_FILE = YES; - HEADER_SEARCH_PATHS = ( - /Developer/Headers/FlatCarbon, - $PROJECT_DIR/../complib/u_complib.framework/Headers, - ); - INFOPLIST_FILE = $PROJECT_DIR/Info.plist; - INIT_ROUTINE = ""; - INSTALL_PATH = "$(PROJECT_DIR)/../_OSXUnicodeDbg"; - LIBRARY_SEARCH_PATHS = ""; - LIBRARY_STYLE = DYNAMIC; - OTHER_CFLAGS = ( - "-fshort-wchar", - "-Dismach_o", - "-Wno-comment", - ); - OTHER_CPLUSPLUSFLAGS = "$(OTHER_CFLAGS)"; - OTHER_LDFLAGS = ""; - PRODUCT_NAME = oExample; - RESMERGER_SOURCES_FORK = data; - REZ_SEARCH_PATHS = ( - /Developer/Headers/FlatCarbon, - $PROJECT_DIR, - $PROJECT_DIR/English.lproj, - ); - WRAPPER_EXTENSION = u_xcomp; - ZERO_LINK = NO; - }; - name = Development; - }; - 96CA4E5F0907E8CC00C234AA /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = i386; - COPY_PHASE_STRIP = YES; - DEPLOYMENT_LOCATION = YES; - DSTROOT = /; - FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../complib"; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_PRECOMPILE_PREFIX_HEADER = NO; - GCC_PREFIX_HEADER = $PROJECT_DIR/../complib/u_complib.framework/Headers/carbnuni.h; - GENERATE_PKGINFO_FILE = YES; - HEADER_SEARCH_PATHS = ( - /Developer/Headers/FlatCarbon, - $PROJECT_DIR/../complib/u_complib.framework/Headers, - ); - INFOPLIST_FILE = $PROJECT_DIR/Info.plist; - INSTALL_PATH = "$(PROJECT_DIR)/../_OSXUnicode"; - LIBRARY_SEARCH_PATHS = ""; - LIBRARY_STYLE = DYNAMIC; - OTHER_CFLAGS = ( - "-fshort-wchar", - "-Dismach_o", - "-Wno-comment", - ); - OTHER_CPLUSPLUSFLAGS = "$(OTHER_CFLAGS)"; - PRODUCT_NAME = oExample; - RESMERGER_SOURCES_FORK = data; - REZ_SEARCH_PATHS = ( - /Developer/Headers/FlatCarbon, - $PROJECT_DIR, - $PROJECT_DIR/English.lproj, - ); - SKIP_INSTALL = NO; - WRAPPER_EXTENSION = u_xcomp; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 96CF455F08FBABD1003AA3FE /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - COPY_PHASE_STRIP = NO; - DSTROOT = /; - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO; - LIBRARY_STYLE = DYNAMIC; - MACOSX_DEPLOYMENT_TARGET = 10.6; - SDKROOT = "$(DEVELOPER_SDK_DIR)/MacOSX10.6.sdk"; - }; - name = Development; - }; - 96CF456008FBABD1003AA3FE /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO; - MACOSX_DEPLOYMENT_TARGET = 10.6; - SDKROOT = "$(DEVELOPER_SDK_DIR)/MacOSX10.6.sdk"; - }; - name = Deployment; - }; - 96D355F40908DD80006B6436 /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = ReleaseBuild; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = ( - "-Wmost", - "-Wno-four-char-constants", - "-Wno-unknown-pragmas", - ); - }; - name = Development; - }; - 96D355F50908DD80006B6436 /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_OPTIMIZATION_LEVEL = 0; - OTHER_CFLAGS = ""; - OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = ReleaseBuild; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = ( - "-Wmost", - "-Wno-four-char-constants", - "-Wno-unknown-pragmas", - ); - }; - name = Deployment; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 96CA4E5D0907E8CC00C234AA /* Build configuration list for PBXNativeTarget "UnicodeCore" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 96CA4E5E0907E8CC00C234AA /* Development */, - 96CA4E5F0907E8CC00C234AA /* Deployment */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; - 96CF455E08FBABD1003AA3FE /* Build configuration list for PBXProject "oExample_OS6" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 96CF455F08FBABD1003AA3FE /* Development */, - 96CF456008FBABD1003AA3FE /* Deployment */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; - 96D355F30908DD80006B6436 /* Build configuration list for PBXAggregateTarget "ReleaseBuild" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 96D355F40908DD80006B6436 /* Development */, - 96D355F50908DD80006B6436 /* Deployment */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; - }; -/* End XCConfigurationList section */ - }; - rootObject = 089C1669FE841209C02AAC07 /* Project object */; -} diff --git a/oExample_OS81.xcodeproj/project.pbxproj b/oExample_OS81.xcodeproj/project.pbxproj deleted file mode 100644 index dd23370..0000000 --- a/oExample_OS81.xcodeproj/project.pbxproj +++ /dev/null @@ -1,429 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 42; - objects = { - -/* Begin PBXBuildFile section */ - 96CA4E550907E8CC00C234AA /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C167DFE841241C02AAC07 /* InfoPlist.strings */; }; - 96CA4E5A0907E8CC00C234AA /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 08EA7FFBFE8413EDC02AAC07 /* Cocoa.framework */; }; - 96CA4E660907EB0700C234AA /* u_complib.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 96CA4E650907EB0700C234AA /* u_complib.framework */; }; - AC48CBC3209991A60019A1E9 /* example.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC48CBC0209991A60019A1E9 /* example.cpp */; }; - AC48CBC4209991A60019A1E9 /* oExample.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC48CBC1209991A60019A1E9 /* oExample.cpp */; }; - AC48CBC5209991A60019A1E9 /* oNVExample.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC48CBC2209991A60019A1E9 /* oNVExample.cpp */; }; - AC48CBCA209991BA0019A1E9 /* oExample.bmp in Resources */ = {isa = PBXBuildFile; fileRef = AC48CBC8209991BA0019A1E9 /* oExample.bmp */; }; - AC48CBCB209993D50019A1E9 /* oExample.rc in Resources */ = {isa = PBXBuildFile; fileRef = AC48CBC6209991BA0019A1E9 /* oExample.rc */; }; - ACFD97362097DC9B006A5A95 /* oBaseNVComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACFD97222097DC99006A5A95 /* oBaseNVComponent.cpp */; }; - ACFD97372097DC9B006A5A95 /* oBaseComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACFD97242097DC99006A5A95 /* oBaseComponent.cpp */; }; - ACFD97382097DC9B006A5A95 /* FrameworkWndProc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACFD97272097DC99006A5A95 /* FrameworkWndProc.cpp */; }; - ACFD97392097DC9B006A5A95 /* qString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACFD97292097DC99006A5A95 /* qString.cpp */; }; - ACFD973A2097DC9B006A5A95 /* oBaseVisComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACFD972B2097DC99006A5A95 /* oBaseVisComponent.cpp */; }; - ACFD973B2097DC9B006A5A95 /* oXCompLib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACFD972C2097DC9A006A5A95 /* oXCompLib.cpp */; }; - ACFD973C2097DC9B006A5A95 /* oDrawingCanvas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACFD972F2097DC9A006A5A95 /* oDrawingCanvas.cpp */; }; - ACFD973D2097DC9B006A5A95 /* oUTF8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACFD97332097DC9A006A5A95 /* oUTF8.cpp */; }; - ACFD973E2097DC9B006A5A95 /* oRGBAImage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACFD97352097DC9A006A5A95 /* oRGBAImage.cpp */; }; -/* End PBXBuildFile section */ - -/* Begin PBXBuildRule section */ - 96CA4E5C0907E8CC00C234AA /* PBXBuildRule */ = { - isa = PBXBuildRule; - compilerSpec = com.apple.compilers.proxy.script; - filePatterns = "*.rc"; - fileType = pattern.proxy; - isEditable = 1; - outputFiles = ( - "$(TEMP_FILE_DIR)/omnisrc/Localizable.strings", - ); - script = "$DEVELOPER_TOOLS_DIR/omnisrc64.app/Contents/MacOS/omnisrc64 INPUT_FILE_PATH TEMP_FILE_DIR REZ_SEARCH_PATHS XCOMP\nif [ -f $TEMP_FILE_DIR/omnisrc/Bitmap.strings ]; then\ncp $TEMP_FILE_DIR/omnisrc/Bitmap.strings $INSTALL_DIR/$CONTENTS_FOLDER_PATH/Resources\nfi\nshopt -s nullglob\nif [ ! -z \"`echo $TEMP_FILE_DIR/omnisrc/*.PNG`\" ]; then\ncp $TEMP_FILE_DIR/omnisrc/*.PNG $INSTALL_DIR/$CONTENTS_FOLDER_PATH/Resources\nfi"; - }; -/* End PBXBuildRule section */ - -/* Begin PBXFileReference section */ - 089C167EFE841241C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; - 08EA7FFBFE8413EDC02AAC07 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; - 96CA4E610907E8CC00C234AA /* oExample.u_xcomp */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = oExample.u_xcomp; sourceTree = BUILT_PRODUCTS_DIR; }; - 96CA4E650907EB0700C234AA /* u_complib.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = u_complib.framework; path = ../complib/u_complib.framework; sourceTree = SOURCE_ROOT; }; - AC48CBBD209991980019A1E9 /* example.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = example.h; path = Src/example.h; sourceTree = ""; }; - AC48CBBE209991980019A1E9 /* oNVExample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oNVExample.h; path = Src/oNVExample.h; sourceTree = ""; }; - AC48CBBF209991980019A1E9 /* oExample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oExample.h; path = Src/oExample.h; sourceTree = ""; }; - AC48CBC0209991A60019A1E9 /* example.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = example.cpp; path = Src/example.cpp; sourceTree = ""; }; - AC48CBC1209991A60019A1E9 /* oExample.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oExample.cpp; path = Src/oExample.cpp; sourceTree = ""; }; - AC48CBC2209991A60019A1E9 /* oNVExample.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oNVExample.cpp; path = Src/oNVExample.cpp; sourceTree = ""; }; - AC48CBC7209991BA0019A1E9 /* English */ = {isa = PBXFileReference; explicitFileType = text; name = English; path = English.lproj/oExample.rc; sourceTree = ""; }; - AC48CBC9209991BA0019A1E9 /* English */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; name = English; path = English.lproj/oExample.bmp; sourceTree = ""; }; - ACFD97222097DC99006A5A95 /* oBaseNVComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oBaseNVComponent.cpp; path = ../omnis.xcomp.framework/oBaseNVComponent.cpp; sourceTree = ""; }; - ACFD97232097DC99006A5A95 /* oBaseComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oBaseComponent.h; path = ../omnis.xcomp.framework/oBaseComponent.h; sourceTree = ""; }; - ACFD97242097DC99006A5A95 /* oBaseComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oBaseComponent.cpp; path = ../omnis.xcomp.framework/oBaseComponent.cpp; sourceTree = ""; }; - ACFD97252097DC99006A5A95 /* oBaseVisComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oBaseVisComponent.h; path = ../omnis.xcomp.framework/oBaseVisComponent.h; sourceTree = ""; }; - ACFD97262097DC99006A5A95 /* oUTF8.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oUTF8.h; path = ../omnis.xcomp.framework/oUTF8.h; sourceTree = ""; }; - ACFD97272097DC99006A5A95 /* FrameworkWndProc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = FrameworkWndProc.cpp; path = ../omnis.xcomp.framework/FrameworkWndProc.cpp; sourceTree = ""; }; - ACFD97282097DC99006A5A95 /* oXCompLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oXCompLib.h; path = ../omnis.xcomp.framework/oXCompLib.h; sourceTree = ""; }; - ACFD97292097DC99006A5A95 /* qString.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = qString.cpp; path = ../omnis.xcomp.framework/qString.cpp; sourceTree = ""; }; - ACFD972A2097DC99006A5A95 /* oRGBAImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oRGBAImage.h; path = ../omnis.xcomp.framework/oRGBAImage.h; sourceTree = ""; }; - ACFD972B2097DC99006A5A95 /* oBaseVisComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oBaseVisComponent.cpp; path = ../omnis.xcomp.framework/oBaseVisComponent.cpp; sourceTree = ""; }; - ACFD972C2097DC9A006A5A95 /* oXCompLib.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oXCompLib.cpp; path = ../omnis.xcomp.framework/oXCompLib.cpp; sourceTree = ""; }; - ACFD972D2097DC9A006A5A95 /* qString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qString.h; path = ../omnis.xcomp.framework/qString.h; sourceTree = ""; }; - ACFD972E2097DC9A006A5A95 /* xCompStandardIncludes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = xCompStandardIncludes.h; path = ../omnis.xcomp.framework/xCompStandardIncludes.h; sourceTree = ""; }; - ACFD972F2097DC9A006A5A95 /* oDrawingCanvas.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oDrawingCanvas.cpp; path = ../omnis.xcomp.framework/oDrawingCanvas.cpp; sourceTree = ""; }; - ACFD97302097DC9A006A5A95 /* omnis.xcomp.framework.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = omnis.xcomp.framework.h; path = ../omnis.xcomp.framework/omnis.xcomp.framework.h; sourceTree = ""; }; - ACFD97312097DC9A006A5A95 /* qArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qArray.h; path = ../omnis.xcomp.framework/qArray.h; sourceTree = ""; }; - ACFD97322097DC9A006A5A95 /* oDrawingCanvas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oDrawingCanvas.h; path = ../omnis.xcomp.framework/oDrawingCanvas.h; sourceTree = ""; }; - ACFD97332097DC9A006A5A95 /* oUTF8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oUTF8.cpp; path = ../omnis.xcomp.framework/oUTF8.cpp; sourceTree = ""; }; - ACFD97342097DC9A006A5A95 /* oBaseNVComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oBaseNVComponent.h; path = ../omnis.xcomp.framework/oBaseNVComponent.h; sourceTree = ""; }; - ACFD97352097DC9A006A5A95 /* oRGBAImage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = oRGBAImage.cpp; path = ../omnis.xcomp.framework/oRGBAImage.cpp; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 96CA4E590907E8CC00C234AA /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 96CA4E5A0907E8CC00C234AA /* Cocoa.framework in Frameworks */, - 96CA4E660907EB0700C234AA /* u_complib.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 089C166AFE841209C02AAC07 /* xrandom */ = { - isa = PBXGroup; - children = ( - ACFD97212097DC6C006A5A95 /* omnis.xcomp.frameworks */, - 96D631340905093100E0F291 /* Headers */, - 08FB77ADFE841716C02AAC07 /* Source */, - 089C167CFE841241C02AAC07 /* Resources */, - 089C1671FE841209C02AAC07 /* External Frameworks and Libraries */, - 19C28FB4FE9D528D11CA2CBB /* Products */, - ); - name = xrandom; - sourceTree = ""; - }; - 089C1671FE841209C02AAC07 /* External Frameworks and Libraries */ = { - isa = PBXGroup; - children = ( - 96CA4E650907EB0700C234AA /* u_complib.framework */, - 08EA7FFBFE8413EDC02AAC07 /* Cocoa.framework */, - ); - name = "External Frameworks and Libraries"; - sourceTree = ""; - }; - 089C167CFE841241C02AAC07 /* Resources */ = { - isa = PBXGroup; - children = ( - AC48CBC8209991BA0019A1E9 /* oExample.bmp */, - AC48CBC6209991BA0019A1E9 /* oExample.rc */, - 089C167DFE841241C02AAC07 /* InfoPlist.strings */, - ); - name = Resources; - sourceTree = ""; - }; - 08FB77ADFE841716C02AAC07 /* Source */ = { - isa = PBXGroup; - children = ( - AC48CBC0209991A60019A1E9 /* example.cpp */, - AC48CBC1209991A60019A1E9 /* oExample.cpp */, - AC48CBC2209991A60019A1E9 /* oNVExample.cpp */, - ); - name = Source; - sourceTree = ""; - }; - 19C28FB4FE9D528D11CA2CBB /* Products */ = { - isa = PBXGroup; - children = ( - 96CA4E610907E8CC00C234AA /* oExample.u_xcomp */, - ); - name = Products; - sourceTree = ""; - }; - 96D631340905093100E0F291 /* Headers */ = { - isa = PBXGroup; - children = ( - AC48CBBD209991980019A1E9 /* example.h */, - AC48CBBF209991980019A1E9 /* oExample.h */, - AC48CBBE209991980019A1E9 /* oNVExample.h */, - ); - name = Headers; - sourceTree = ""; - }; - ACFD97212097DC6C006A5A95 /* omnis.xcomp.frameworks */ = { - isa = PBXGroup; - children = ( - ACFD97272097DC99006A5A95 /* FrameworkWndProc.cpp */, - ACFD97242097DC99006A5A95 /* oBaseComponent.cpp */, - ACFD97232097DC99006A5A95 /* oBaseComponent.h */, - ACFD97222097DC99006A5A95 /* oBaseNVComponent.cpp */, - ACFD97342097DC9A006A5A95 /* oBaseNVComponent.h */, - ACFD972B2097DC99006A5A95 /* oBaseVisComponent.cpp */, - ACFD97252097DC99006A5A95 /* oBaseVisComponent.h */, - ACFD972F2097DC9A006A5A95 /* oDrawingCanvas.cpp */, - ACFD97322097DC9A006A5A95 /* oDrawingCanvas.h */, - ACFD97302097DC9A006A5A95 /* omnis.xcomp.framework.h */, - ACFD97352097DC9A006A5A95 /* oRGBAImage.cpp */, - ACFD972A2097DC99006A5A95 /* oRGBAImage.h */, - ACFD97332097DC9A006A5A95 /* oUTF8.cpp */, - ACFD97262097DC99006A5A95 /* oUTF8.h */, - ACFD972C2097DC9A006A5A95 /* oXCompLib.cpp */, - ACFD97282097DC99006A5A95 /* oXCompLib.h */, - ACFD97312097DC9A006A5A95 /* qArray.h */, - ACFD97292097DC99006A5A95 /* qString.cpp */, - ACFD972D2097DC9A006A5A95 /* qString.h */, - ACFD972E2097DC9A006A5A95 /* xCompStandardIncludes.h */, - ); - name = omnis.xcomp.frameworks; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 96CA4E530907E8CC00C234AA /* UnicodeCore */ = { - isa = PBXNativeTarget; - buildConfigurationList = 96CA4E5D0907E8CC00C234AA /* Build configuration list for PBXNativeTarget "UnicodeCore" */; - buildPhases = ( - 96CA4E540907E8CC00C234AA /* Resources */, - 96CA4E570907E8CC00C234AA /* Sources */, - 96CA4E590907E8CC00C234AA /* Frameworks */, - ); - buildRules = ( - 96CA4E5C0907E8CC00C234AA /* PBXBuildRule */, - ); - dependencies = ( - ); - name = UnicodeCore; - productInstallPath = "$(HOME)/Library/Bundles"; - productName = xrandom; - productReference = 96CA4E610907E8CC00C234AA /* oExample.u_xcomp */; - productType = "com.apple.product-type.bundle"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 089C1669FE841209C02AAC07 /* Project object */ = { - isa = PBXProject; - attributes = { - }; - buildConfigurationList = 96CF455E08FBABD1003AA3FE /* Build configuration list for PBXProject "oExample_OS81" */; - compatibilityVersion = "Xcode 2.4"; - developmentRegion = English; - hasScannedForEncodings = 1; - knownRegions = ( - English, - Japanese, - French, - German, - english, - ); - mainGroup = 089C166AFE841209C02AAC07 /* xrandom */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 96CA4E530907E8CC00C234AA /* UnicodeCore */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 96CA4E540907E8CC00C234AA /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - AC48CBCA209991BA0019A1E9 /* oExample.bmp in Resources */, - 96CA4E550907E8CC00C234AA /* InfoPlist.strings in Resources */, - AC48CBCB209993D50019A1E9 /* oExample.rc in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 96CA4E570907E8CC00C234AA /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - AC48CBC4209991A60019A1E9 /* oExample.cpp in Sources */, - AC48CBC3209991A60019A1E9 /* example.cpp in Sources */, - ACFD973B2097DC9B006A5A95 /* oXCompLib.cpp in Sources */, - ACFD973C2097DC9B006A5A95 /* oDrawingCanvas.cpp in Sources */, - ACFD97392097DC9B006A5A95 /* qString.cpp in Sources */, - ACFD973A2097DC9B006A5A95 /* oBaseVisComponent.cpp in Sources */, - AC48CBC5209991A60019A1E9 /* oNVExample.cpp in Sources */, - ACFD97382097DC9B006A5A95 /* FrameworkWndProc.cpp in Sources */, - ACFD97372097DC9B006A5A95 /* oBaseComponent.cpp in Sources */, - ACFD973D2097DC9B006A5A95 /* oUTF8.cpp in Sources */, - ACFD973E2097DC9B006A5A95 /* oRGBAImage.cpp in Sources */, - ACFD97362097DC9B006A5A95 /* oBaseNVComponent.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXVariantGroup section */ - 089C167DFE841241C02AAC07 /* InfoPlist.strings */ = { - isa = PBXVariantGroup; - children = ( - 089C167EFE841241C02AAC07 /* English */, - ); - name = InfoPlist.strings; - sourceTree = ""; - }; - AC48CBC6209991BA0019A1E9 /* oExample.rc */ = { - isa = PBXVariantGroup; - children = ( - AC48CBC7209991BA0019A1E9 /* English */, - ); - name = oExample.rc; - sourceTree = ""; - }; - AC48CBC8209991BA0019A1E9 /* oExample.bmp */ = { - isa = PBXVariantGroup; - children = ( - AC48CBC9209991BA0019A1E9 /* English */, - ); - name = oExample.bmp; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 96CA4E5E0907E8CC00C234AA /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD)"; - BUILD_VARIANTS = normal; - CLANG_ENABLE_OBJC_ARC = YES; - COPY_PHASE_STRIP = NO; - DEPLOYMENT_LOCATION = YES; - FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../complib"; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = NO; - GCC_PREFIX_HEADER = $PROJECT_DIR/../complib/u_complib.framework/Headers/carbnuni.h; - GENERATE_PKGINFO_FILE = YES; - HEADER_SEARCH_PATHS = $PROJECT_DIR/../complib/u_complib.framework/Headers; - INFOPLIST_FILE = Info.plist; - INIT_ROUTINE = ""; - INSTALL_PATH = "$(PROJECT_DIR)/../_OSXUnicodeDbg"; - LIBRARY_SEARCH_PATHS = ""; - LIBRARY_STYLE = DYNAMIC; - OTHER_CFLAGS = ( - "-fshort-wchar", - "-Dismach_o", - "-Wno-comment", - "-DOMNISSDK=81", - ); - OTHER_CPLUSPLUSFLAGS = "$(OTHER_CFLAGS)"; - OTHER_LDFLAGS = ""; - PRODUCT_NAME = oExample; - RESMERGER_SOURCES_FORK = data; - REZ_SEARCH_PATHS = ( - $PROJECT_DIR, - $PROJECT_DIR/English.lproj, - ); - SDKROOT = macosx; - WRAPPER_EXTENSION = u_xcomp; - ZERO_LINK = NO; - }; - name = Development; - }; - 96CA4E5F0907E8CC00C234AA /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD)"; - CLANG_ENABLE_OBJC_ARC = YES; - COPY_PHASE_STRIP = YES; - DEPLOYMENT_LOCATION = YES; - DSTROOT = /; - FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../complib"; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_PRECOMPILE_PREFIX_HEADER = NO; - GCC_PREFIX_HEADER = $PROJECT_DIR/../complib/u_complib.framework/Headers/carbnuni.h; - GENERATE_PKGINFO_FILE = YES; - HEADER_SEARCH_PATHS = $PROJECT_DIR/../complib/u_complib.framework/Headers; - INFOPLIST_FILE = Info.plist; - INSTALL_PATH = "$(PROJECT_DIR)/../_OSXUnicode"; - LIBRARY_SEARCH_PATHS = ""; - LIBRARY_STYLE = DYNAMIC; - OTHER_CFLAGS = ( - "-fshort-wchar", - "-Dismach_o", - "-Wno-comment", - "-DOMNISSDK=81", - ); - OTHER_CPLUSPLUSFLAGS = "$(OTHER_CFLAGS)"; - PRIVATE_HEADERS_FOLDER_PATH = "$(CONTENTS_FOLDER_PATH)/PrivateHeaders"; - PRODUCT_NAME = oExample; - PUBLIC_HEADERS_FOLDER_PATH = "$(CONTENTS_FOLDER_PATH)/Headers"; - RESMERGER_SOURCES_FORK = data; - REZ_SEARCH_PATHS = ( - $PROJECT_DIR, - $PROJECT_DIR/English.lproj, - ); - SDKROOT = macosx; - SKIP_INSTALL = NO; - VERSION_INFO_FILE = "$(PRODUCT_NAME)_vers.c"; - WRAPPER_EXTENSION = u_xcomp; - ZERO_LINK = NO; - }; - name = Deployment; - }; - 96CF455F08FBABD1003AA3FE /* Development */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD)"; - COPY_PHASE_STRIP = NO; - DSTROOT = /; - FRAMEWORK_SEARCH_PATHS = ""; - GCC_INPUT_FILETYPE = sourcecode.cpp.objcpp; - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO; - HEADER_SEARCH_PATHS = ""; - LIBRARY_STYLE = DYNAMIC; - MACOSX_DEPLOYMENT_TARGET = 10.9; - OTHER_CFLAGS = ""; - SDKROOT = macosx; - }; - name = Development; - }; - 96CF456008FBABD1003AA3FE /* Deployment */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD)"; - FRAMEWORK_SEARCH_PATHS = ""; - GCC_INPUT_FILETYPE = sourcecode.cpp.objcpp; - GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO; - HEADER_SEARCH_PATHS = ""; - MACOSX_DEPLOYMENT_TARGET = 10.9; - OTHER_CFLAGS = ""; - SDKROOT = macosx; - }; - name = Deployment; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 96CA4E5D0907E8CC00C234AA /* Build configuration list for PBXNativeTarget "UnicodeCore" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 96CA4E5E0907E8CC00C234AA /* Development */, - 96CA4E5F0907E8CC00C234AA /* Deployment */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Development; - }; - 96CF455E08FBABD1003AA3FE /* Build configuration list for PBXProject "oExample_OS81" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 96CF455F08FBABD1003AA3FE /* Development */, - 96CF456008FBABD1003AA3FE /* Deployment */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Development; - }; -/* End XCConfigurationList section */ - }; - rootObject = 089C1669FE841209C02AAC07 /* Project object */; -} diff --git a/oExample_OS81.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/oExample_OS81.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a..0000000 --- a/oExample_OS81.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/oExample_OS81.xcodeproj/project.xcworkspace/xcuserdata/basolij.xcuserdatad/UserInterfaceState.xcuserstate b/oExample_OS81.xcodeproj/project.xcworkspace/xcuserdata/basolij.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index c4c357f..0000000 Binary files a/oExample_OS81.xcodeproj/project.xcworkspace/xcuserdata/basolij.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/oExample_OS81.xcodeproj/xcuserdata/basolij.xcuserdatad/xcschemes/UnicodeCore.xcscheme b/oExample_OS81.xcodeproj/xcuserdata/basolij.xcuserdatad/xcschemes/UnicodeCore.xcscheme deleted file mode 100644 index 1ad2fca..0000000 --- a/oExample_OS81.xcodeproj/xcuserdata/basolij.xcuserdatad/xcschemes/UnicodeCore.xcscheme +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/oExample_OS81.xcodeproj/xcuserdata/basolij.xcuserdatad/xcschemes/xcschememanagement.plist b/oExample_OS81.xcodeproj/xcuserdata/basolij.xcuserdatad/xcschemes/xcschememanagement.plist deleted file mode 100644 index 21e399f..0000000 --- a/oExample_OS81.xcodeproj/xcuserdata/basolij.xcuserdatad/xcschemes/xcschememanagement.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - SchemeUserState - - UnicodeCore.xcscheme - - orderHint - 0 - - - SuppressBuildableAutocreation - - 96CA4E530907E8CC00C234AA - - primary - - - - - diff --git a/thirdparty/README.md b/thirdparty/README.md new file mode 100644 index 0000000..ad23b6a --- /dev/null +++ b/thirdparty/README.md @@ -0,0 +1,9 @@ +This folder contains external libraries we use to build this project. + +# omnis.xcomp.framework +Is our framework library for building XCOMPs + +# omnis.sdk +Requires the Omnis SDK downloaded from https://omnis.net/developers/resources/download/tools/buildyourown.jsp, the folders are placeholder for now + +The current SDK is SDK 10.2 - 31315, Mac and Windows combined diff --git a/thirdparty/omnis.sdk/mac/.gitignore b/thirdparty/omnis.sdk/mac/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/thirdparty/omnis.sdk/mac/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/thirdparty/omnis.sdk/win/.gitignore b/thirdparty/omnis.sdk/win/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/thirdparty/omnis.sdk/win/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/thirdparty/omnis.xcomp.framework b/thirdparty/omnis.xcomp.framework new file mode 160000 index 0000000..da9fe12 --- /dev/null +++ b/thirdparty/omnis.xcomp.framework @@ -0,0 +1 @@ +Subproject commit da9fe12fe000586b5b1910020662915178c4c46c