Skip to content

Build Projects

Visual-Rock edited this page Apr 6, 2022 · 4 revisions

Backend

currently only builds on Linux are Tested and work

Dependencies

Compile and Run

conan install .. -s compiler.libcxx=libstdc++11 --build
cmake .
make -j$(nproc)

Frontend

Project

@vue/cli

Project setup

yarn install

Compile and hot-reload for development

yarn serve

Compile and minify for production

yarn build

Run unit tests

yarn test:unit

Run end-to-end tests

yarn test:e2e

Lint and fix files

yarn lint

Format files

yarn format