1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 |
Gamp: Graphics, Audio, Multimedia and Processing Library for C++ and WebAssemblygamp /gămp/ noun
Git RepositoryThis project's canonical repositories is hosted on Gothel Software. GoalsGamp intends to replicate JogAmp's experience to C++ in a condensed form, allowing a similar workflow on native targets and within the browser via WebAssembly. Ironically this will bring back runs everywhere including the web. Initial goal is to reimplement Graph/GraphUI. Gamp uses jaulib for general purpose functionality including linear algebra and geometry. Online WebAssembly ExamplesEarlier Workgfxbox2 of our CS class evaluated the C++ to WebAssembly path earlier. StatusThis project is currently very much unstable and heavily WIP. All APIs, if any, will change - but I thought it is nice to share the development with whoever might be interested. Supported Platforms
Build Dependencies
Install on Debian or UbuntuInstalling build dependencies for Debian >= 12 and Ubuntu >= 22:
If using optional clang toolchain, perhaps change the clang version-suffix of above clang install line to the appropriate version. After complete clang installation, you might want to setup the latest version as your default. For Debian you can use this clang alternatives setup script. Build ProcedureBuild preparations
CMake Build via PresetsAnalog to jaulib CMake build presets ... Following debug presets are defined in
Kick-off the workflow by e.g. using preset
You may utilize CMake Build via Hardcoded PresetsAnalog to jaulib CMake hardcoded presets ... Besides above
The hardcoded presets resemble Kick-off the workflow to configure, build, test, install and building
documentation. You may skip
The install target of the last command will create the include/ and lib/ directories with a copy of the headers and library objects respectively in your dist location. CMake VariablesOur cmake configure has a number of options, cmake-gui or ccmake can show you all the options. The interesting ones are detailed below: See jaulib CMake variables for details. Unit TestingTBD Cross BuildTBD Also provided is a cross-build script using chroot into a target system using QEMU User space emulation and Linux kernel binfmt_misc to run on other architectures than the host. You may use our pi-gen branch to produce a Raspi-arm64, Raspi-armhf or PC-amd64 target image. Build StatusWill be updated IDE IntegrationEclipseTested Eclipse 2024-03 (4.31). IDE integration configuration files are provided for
The Hardcoded CMake
Presets will use Make sure to set the environment variable
You can import the project to your workspace via
For Eclipse one might need to adjust some setting in the
Otherwise recreate the Eclipse project by
VSCodium or VS CodeIDE integration configuration files are provided for For VSCodium one might copy the example
root-workspace file to the parent folder of this project (note
the filename change) and adjust the
Then you can open it via
Support & SponsorshipGamp is lead by Gothel Software. If you like to utilize Gamp in a commercial setting, please contact Gothel Software to setup a potential support contract or just help to fund the ongoing effort. Common issuesBugtracker etc to be setup at a later stage. ChangesSee Changes. |