# lcui-quick-start **Repository Path**: No_C/lcui-quick-start ## Basic Information - **Project Name**: lcui-quick-start - **Description**: LCUI 的最小示例应用,克隆并运行它以快速查看 LCUI 的运行方式 - **Primary Language**: C - **License**: CC0-1.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2023-09-08 - **Last Updated**: 2023-09-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # lcui-quick-start GitHub Actions Build Status (**English**/[中文](README.zh-cn.md)) **Clone and run for a quick way to see LCUI in action.** ## To Use To clone and run this repository you'll need install the following tools on your computer: - [Git](https://git-scm.com) - [Node.js](https://nodejs.org/en/download/) (which comes with [npm](http://npmjs.com)) - [XMake](https://xmake.io/) From your command line: ```bash # Clone this repository git clone https://github.com/lc-ui/lcui-quick-start # Go into the repository cd lcui-quick-start # Update git submodule git submodule sync --recursive git submodule update --init --recursive # Build xmake # Run xmake run ``` ## What's included - Some resource files. - Some scripts that make it easy for you to quickly build application. - Configuration files for [CMake](https://cmake.org/) and [XMake](https://xmake.io/) build tools, You can choose one of them that you like. - Simple data storage implementation in `src/lib/store.c`. - [.scss](https://sass-lang.com/guide) files for describe the user interface style. - `about` component for display app infomation. - `home` view that implements simple layout and interaction. ## Project Structure - **`app`**: contains the resource files required for the application to run. You can use it as the working directory of the application, and when you publish your application, you only need to package the files in that directory. - **`build`**: contains build tool output files. - **`scripts`**: contains build-related scripts and configuration files. - **`src`**: contains the source code. - **`ui`**: contains source code related to the user interface. - **`stylesheets`**: contains the source code of stylesheets. You can put [.scss](https://sass-lang.com/guide) files here, they will be compiled into css files and outputed to the `app/assets/stylesheets` directory at build time. - **`components`**: contains the source code of the components. - **`views`**: contains the source code of the views. - **`lib`**: contains the base library code. ## License [CC0 1.0 (Public Domain)](LICENSE.md)