├── .gitignore ├── .paket ├── paket.bootstrapper.exe ├── paket.exe └── paket.targets ├── Ferop.Sample.Unix.sln ├── Ferop.Sample.sln ├── Ferop.Tests.sln ├── Ferop.nuspec ├── Ferop.sln ├── LICENSE ├── README.md ├── ferop_icon.png ├── include ├── GL │ ├── glew.h │ ├── glxew.h │ └── wglew.h └── SDL2 │ ├── SDL.h │ ├── SDL_assert.h │ ├── SDL_atomic.h │ ├── SDL_audio.h │ ├── SDL_bits.h │ ├── SDL_blendmode.h │ ├── SDL_clipboard.h │ ├── SDL_config.h │ ├── SDL_cpuinfo.h │ ├── SDL_endian.h │ ├── SDL_error.h │ ├── SDL_events.h │ ├── SDL_filesystem.h │ ├── SDL_gamecontroller.h │ ├── SDL_gesture.h │ ├── SDL_haptic.h │ ├── SDL_hints.h │ ├── SDL_joystick.h │ ├── SDL_keyboard.h │ ├── SDL_keycode.h │ ├── SDL_loadso.h │ ├── SDL_log.h │ ├── SDL_main.h │ ├── SDL_messagebox.h │ ├── SDL_mouse.h │ ├── SDL_mutex.h │ ├── SDL_name.h │ ├── SDL_opengl.h │ ├── SDL_opengles.h │ ├── SDL_opengles2.h │ ├── SDL_pixels.h │ ├── SDL_platform.h │ ├── SDL_power.h │ ├── SDL_quit.h │ ├── SDL_rect.h │ ├── SDL_render.h │ ├── SDL_revision.h │ ├── SDL_rwops.h │ ├── SDL_scancode.h │ ├── SDL_shape.h │ ├── SDL_stdinc.h │ ├── SDL_surface.h │ ├── SDL_system.h │ ├── SDL_syswm.h │ ├── SDL_test.h │ ├── SDL_test_assert.h │ ├── SDL_test_common.h │ ├── SDL_test_compare.h │ ├── SDL_test_crc32.h │ ├── SDL_test_font.h │ ├── SDL_test_fuzzer.h │ ├── SDL_test_harness.h │ ├── SDL_test_images.h │ ├── SDL_test_log.h │ ├── SDL_test_md5.h │ ├── SDL_test_random.h │ ├── SDL_thread.h │ ├── SDL_timer.h │ ├── SDL_touch.h │ ├── SDL_types.h │ ├── SDL_version.h │ ├── SDL_video.h │ ├── begin_code.h │ └── close_code.h ├── lib └── win │ ├── x64 │ ├── SDL2.dll │ ├── SDL2.lib │ ├── SDL2main.lib │ ├── SDL2test.lib │ ├── glew32.dll │ ├── glew32.lib │ └── glew32s.lib │ └── x86 │ ├── SDL2.dll │ ├── SDL2.lib │ ├── SDL2main.lib │ ├── SDL2test.lib │ ├── glew32.dll │ ├── glew32.lib │ └── glew32s.lib ├── paket.dependencies ├── paket.lock └── src ├── Ferop.CSharp.Sample ├── Ferop.CSharp.Sample.csproj └── Program.cs ├── Ferop.Core ├── FSharp.Core.optdata ├── FSharp.Core.sigdata ├── Ferop.Core.fsproj ├── build │ └── Ferop.targets ├── cconv.fs ├── cconv.fsi ├── cgen.fs ├── cios.fs ├── cios.fsi ├── clinux.fs ├── compiler.fs ├── core.fs ├── cosx.fs ├── ctast.fs ├── cwin.fs ├── paket.references └── task.fs ├── Ferop.Sample ├── AssemblyInfo.fs ├── Ferop.Sample.Unix.fsproj ├── Ferop.Sample.fsproj ├── Program.fs ├── f.fragment └── v.vertex ├── Ferop.Tests ├── Ferop.Tests.fsproj ├── Ferop.Tests.sln ├── app.config ├── paket.references └── tests.fs ├── Ferop ├── AssemblyInfo.fs ├── Ferop.fsproj └── ferop.fs ├── FeropiOS.Tests ├── AppDelegate.fs ├── Entitlements.plist ├── FeropiOS.Tests.fsproj ├── FeropiOS.Tests.fsproj.bak ├── Info.plist ├── Main.fs ├── Resources │ ├── Images.xcassets │ │ └── AppIcons.appiconset │ │ │ └── Contents.json │ └── LaunchScreen.xib └── TestViewController.fs └── Foom.Tests.PCL ├── Foom.Tests.PCL.fsproj └── ITest.fs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/.gitignore -------------------------------------------------------------------------------- /.paket/paket.bootstrapper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/.paket/paket.bootstrapper.exe -------------------------------------------------------------------------------- /.paket/paket.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/.paket/paket.exe -------------------------------------------------------------------------------- /.paket/paket.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/.paket/paket.targets -------------------------------------------------------------------------------- /Ferop.Sample.Unix.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/Ferop.Sample.Unix.sln -------------------------------------------------------------------------------- /Ferop.Sample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/Ferop.Sample.sln -------------------------------------------------------------------------------- /Ferop.Tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/Ferop.Tests.sln -------------------------------------------------------------------------------- /Ferop.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/Ferop.nuspec -------------------------------------------------------------------------------- /Ferop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/Ferop.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/README.md -------------------------------------------------------------------------------- /ferop_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/ferop_icon.png -------------------------------------------------------------------------------- /include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/GL/glew.h -------------------------------------------------------------------------------- /include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/GL/glxew.h -------------------------------------------------------------------------------- /include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/GL/wglew.h -------------------------------------------------------------------------------- /include/SDL2/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL.h -------------------------------------------------------------------------------- /include/SDL2/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_assert.h -------------------------------------------------------------------------------- /include/SDL2/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_atomic.h -------------------------------------------------------------------------------- /include/SDL2/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_audio.h -------------------------------------------------------------------------------- /include/SDL2/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_bits.h -------------------------------------------------------------------------------- /include/SDL2/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_blendmode.h -------------------------------------------------------------------------------- /include/SDL2/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_clipboard.h -------------------------------------------------------------------------------- /include/SDL2/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_config.h -------------------------------------------------------------------------------- /include/SDL2/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_cpuinfo.h -------------------------------------------------------------------------------- /include/SDL2/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_endian.h -------------------------------------------------------------------------------- /include/SDL2/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_error.h -------------------------------------------------------------------------------- /include/SDL2/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_events.h -------------------------------------------------------------------------------- /include/SDL2/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_filesystem.h -------------------------------------------------------------------------------- /include/SDL2/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_gamecontroller.h -------------------------------------------------------------------------------- /include/SDL2/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_gesture.h -------------------------------------------------------------------------------- /include/SDL2/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_haptic.h -------------------------------------------------------------------------------- /include/SDL2/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_hints.h -------------------------------------------------------------------------------- /include/SDL2/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_joystick.h -------------------------------------------------------------------------------- /include/SDL2/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_keyboard.h -------------------------------------------------------------------------------- /include/SDL2/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_keycode.h -------------------------------------------------------------------------------- /include/SDL2/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_loadso.h -------------------------------------------------------------------------------- /include/SDL2/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_log.h -------------------------------------------------------------------------------- /include/SDL2/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_main.h -------------------------------------------------------------------------------- /include/SDL2/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_messagebox.h -------------------------------------------------------------------------------- /include/SDL2/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_mouse.h -------------------------------------------------------------------------------- /include/SDL2/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_mutex.h -------------------------------------------------------------------------------- /include/SDL2/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_name.h -------------------------------------------------------------------------------- /include/SDL2/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_opengl.h -------------------------------------------------------------------------------- /include/SDL2/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_opengles.h -------------------------------------------------------------------------------- /include/SDL2/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_opengles2.h -------------------------------------------------------------------------------- /include/SDL2/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_pixels.h -------------------------------------------------------------------------------- /include/SDL2/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_platform.h -------------------------------------------------------------------------------- /include/SDL2/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_power.h -------------------------------------------------------------------------------- /include/SDL2/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_quit.h -------------------------------------------------------------------------------- /include/SDL2/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_rect.h -------------------------------------------------------------------------------- /include/SDL2/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_render.h -------------------------------------------------------------------------------- /include/SDL2/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_revision.h -------------------------------------------------------------------------------- /include/SDL2/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_rwops.h -------------------------------------------------------------------------------- /include/SDL2/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_scancode.h -------------------------------------------------------------------------------- /include/SDL2/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_shape.h -------------------------------------------------------------------------------- /include/SDL2/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_stdinc.h -------------------------------------------------------------------------------- /include/SDL2/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_surface.h -------------------------------------------------------------------------------- /include/SDL2/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_system.h -------------------------------------------------------------------------------- /include/SDL2/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_syswm.h -------------------------------------------------------------------------------- /include/SDL2/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_test.h -------------------------------------------------------------------------------- /include/SDL2/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_test_assert.h -------------------------------------------------------------------------------- /include/SDL2/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_test_common.h -------------------------------------------------------------------------------- /include/SDL2/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_test_compare.h -------------------------------------------------------------------------------- /include/SDL2/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_test_crc32.h -------------------------------------------------------------------------------- /include/SDL2/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_test_font.h -------------------------------------------------------------------------------- /include/SDL2/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /include/SDL2/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_test_harness.h -------------------------------------------------------------------------------- /include/SDL2/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_test_images.h -------------------------------------------------------------------------------- /include/SDL2/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_test_log.h -------------------------------------------------------------------------------- /include/SDL2/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_test_md5.h -------------------------------------------------------------------------------- /include/SDL2/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_test_random.h -------------------------------------------------------------------------------- /include/SDL2/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_thread.h -------------------------------------------------------------------------------- /include/SDL2/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_timer.h -------------------------------------------------------------------------------- /include/SDL2/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_touch.h -------------------------------------------------------------------------------- /include/SDL2/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_types.h -------------------------------------------------------------------------------- /include/SDL2/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_version.h -------------------------------------------------------------------------------- /include/SDL2/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/SDL_video.h -------------------------------------------------------------------------------- /include/SDL2/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/begin_code.h -------------------------------------------------------------------------------- /include/SDL2/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/include/SDL2/close_code.h -------------------------------------------------------------------------------- /lib/win/x64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/lib/win/x64/SDL2.dll -------------------------------------------------------------------------------- /lib/win/x64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/lib/win/x64/SDL2.lib -------------------------------------------------------------------------------- /lib/win/x64/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/lib/win/x64/SDL2main.lib -------------------------------------------------------------------------------- /lib/win/x64/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/lib/win/x64/SDL2test.lib -------------------------------------------------------------------------------- /lib/win/x64/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/lib/win/x64/glew32.dll -------------------------------------------------------------------------------- /lib/win/x64/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/lib/win/x64/glew32.lib -------------------------------------------------------------------------------- /lib/win/x64/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/lib/win/x64/glew32s.lib -------------------------------------------------------------------------------- /lib/win/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/lib/win/x86/SDL2.dll -------------------------------------------------------------------------------- /lib/win/x86/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/lib/win/x86/SDL2.lib -------------------------------------------------------------------------------- /lib/win/x86/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/lib/win/x86/SDL2main.lib -------------------------------------------------------------------------------- /lib/win/x86/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/lib/win/x86/SDL2test.lib -------------------------------------------------------------------------------- /lib/win/x86/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/lib/win/x86/glew32.dll -------------------------------------------------------------------------------- /lib/win/x86/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/lib/win/x86/glew32.lib -------------------------------------------------------------------------------- /lib/win/x86/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/lib/win/x86/glew32s.lib -------------------------------------------------------------------------------- /paket.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/paket.dependencies -------------------------------------------------------------------------------- /paket.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/paket.lock -------------------------------------------------------------------------------- /src/Ferop.CSharp.Sample/Ferop.CSharp.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.CSharp.Sample/Ferop.CSharp.Sample.csproj -------------------------------------------------------------------------------- /src/Ferop.CSharp.Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.CSharp.Sample/Program.cs -------------------------------------------------------------------------------- /src/Ferop.Core/FSharp.Core.optdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Core/FSharp.Core.optdata -------------------------------------------------------------------------------- /src/Ferop.Core/FSharp.Core.sigdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Core/FSharp.Core.sigdata -------------------------------------------------------------------------------- /src/Ferop.Core/Ferop.Core.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Core/Ferop.Core.fsproj -------------------------------------------------------------------------------- /src/Ferop.Core/build/Ferop.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Core/build/Ferop.targets -------------------------------------------------------------------------------- /src/Ferop.Core/cconv.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Core/cconv.fs -------------------------------------------------------------------------------- /src/Ferop.Core/cconv.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Core/cconv.fsi -------------------------------------------------------------------------------- /src/Ferop.Core/cgen.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Core/cgen.fs -------------------------------------------------------------------------------- /src/Ferop.Core/cios.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Core/cios.fs -------------------------------------------------------------------------------- /src/Ferop.Core/cios.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Core/cios.fsi -------------------------------------------------------------------------------- /src/Ferop.Core/clinux.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Core/clinux.fs -------------------------------------------------------------------------------- /src/Ferop.Core/compiler.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Core/compiler.fs -------------------------------------------------------------------------------- /src/Ferop.Core/core.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Core/core.fs -------------------------------------------------------------------------------- /src/Ferop.Core/cosx.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Core/cosx.fs -------------------------------------------------------------------------------- /src/Ferop.Core/ctast.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Core/ctast.fs -------------------------------------------------------------------------------- /src/Ferop.Core/cwin.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Core/cwin.fs -------------------------------------------------------------------------------- /src/Ferop.Core/paket.references: -------------------------------------------------------------------------------- 1 | Mono.Cecil -------------------------------------------------------------------------------- /src/Ferop.Core/task.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Core/task.fs -------------------------------------------------------------------------------- /src/Ferop.Sample/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Sample/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/Ferop.Sample/Ferop.Sample.Unix.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Sample/Ferop.Sample.Unix.fsproj -------------------------------------------------------------------------------- /src/Ferop.Sample/Ferop.Sample.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Sample/Ferop.Sample.fsproj -------------------------------------------------------------------------------- /src/Ferop.Sample/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Sample/Program.fs -------------------------------------------------------------------------------- /src/Ferop.Sample/f.fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Sample/f.fragment -------------------------------------------------------------------------------- /src/Ferop.Sample/v.vertex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Sample/v.vertex -------------------------------------------------------------------------------- /src/Ferop.Tests/Ferop.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Tests/Ferop.Tests.fsproj -------------------------------------------------------------------------------- /src/Ferop.Tests/Ferop.Tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Tests/Ferop.Tests.sln -------------------------------------------------------------------------------- /src/Ferop.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Tests/app.config -------------------------------------------------------------------------------- /src/Ferop.Tests/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Tests/paket.references -------------------------------------------------------------------------------- /src/Ferop.Tests/tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop.Tests/tests.fs -------------------------------------------------------------------------------- /src/Ferop/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/Ferop/Ferop.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop/Ferop.fsproj -------------------------------------------------------------------------------- /src/Ferop/ferop.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Ferop/ferop.fs -------------------------------------------------------------------------------- /src/FeropiOS.Tests/AppDelegate.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/FeropiOS.Tests/AppDelegate.fs -------------------------------------------------------------------------------- /src/FeropiOS.Tests/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/FeropiOS.Tests/Entitlements.plist -------------------------------------------------------------------------------- /src/FeropiOS.Tests/FeropiOS.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/FeropiOS.Tests/FeropiOS.Tests.fsproj -------------------------------------------------------------------------------- /src/FeropiOS.Tests/FeropiOS.Tests.fsproj.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/FeropiOS.Tests/FeropiOS.Tests.fsproj.bak -------------------------------------------------------------------------------- /src/FeropiOS.Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/FeropiOS.Tests/Info.plist -------------------------------------------------------------------------------- /src/FeropiOS.Tests/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/FeropiOS.Tests/Main.fs -------------------------------------------------------------------------------- /src/FeropiOS.Tests/Resources/Images.xcassets/AppIcons.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/FeropiOS.Tests/Resources/Images.xcassets/AppIcons.appiconset/Contents.json -------------------------------------------------------------------------------- /src/FeropiOS.Tests/Resources/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/FeropiOS.Tests/Resources/LaunchScreen.xib -------------------------------------------------------------------------------- /src/FeropiOS.Tests/TestViewController.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/FeropiOS.Tests/TestViewController.fs -------------------------------------------------------------------------------- /src/Foom.Tests.PCL/Foom.Tests.PCL.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Foom.Tests.PCL/Foom.Tests.PCL.fsproj -------------------------------------------------------------------------------- /src/Foom.Tests.PCL/ITest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIHan/Ferop/HEAD/src/Foom.Tests.PCL/ITest.fs --------------------------------------------------------------------------------