https://gitlab.opengeosys.org/ogs/ogs.git
Revision d03186125741c4d245eb77c3d72d141c55d8ab3f authored by Lars Bilke on 02 January 2023, 12:54:10 UTC, committed by Lars Bilke on 05 January 2023, 12:22:59 UTC
1 parent f092e3e
Raw File
Tip revision: d03186125741c4d245eb77c3d72d141c55d8ab3f authored by Lars Bilke on 02 January 2023, 12:54:10 UTC
[cmake] Add CMAKE_BUILD_RPATH to GET_RUNTIME_DEPENDENCIES.
Tip revision: d031861
.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