Revision e9ef2a2844c0e9dccbd2c88072b481e824f54c4b authored by Lars Bilke on 18 August 2023, 13:37:02 UTC, committed by Lars Bilke on 18 August 2023, 13:37:02 UTC
E.g.:

ld: warning: dylib (/usr/local/lib/libtiff.dylib) was built for newer macOS version (13.0) than being linked (12.0)
1 parent 4bcb3e4
Raw File
.devcontainer.json
{
	"name": "ogs-gcc-dev",
	"image": "registry.opengeosys.org/ogs/ogs/vscode:latest",
	"postStartCommand": "nohup bash -c 'cd web; yarn; yarn build; hugo server &'",
	"forwardPorts": [
		1313
	],
	"mounts": [
		"source=devcontainer-cpm-cache,target=/opt/cpm,type=volume",
		"source=devcontainer-ccache-cache,target=/opt/ccache,type=volume",
		"source=${localWorkspaceFolder}/../build,target=${containerWorkspaceFolder}/../build,type=bind"
	],
	"customizations": {
		"vscode": {
			"extensions": [
				"ms-vscode.cmake-tools",
				"ms-vscode.cpptools"
			]
		}
	},
	"remoteUser": "vscode",
	"features": {
		"common": {}
	}
}
back to top