From 43f829ce9fc09b99e1dc82116d668d440fdf9362 Mon Sep 17 00:00:00 2001 From: nk125 Date: Sat, 3 Aug 2024 23:14:43 -0600 Subject: [PATCH] docs: Change init to create In xmake, init doesn't (anymore?) exist, the new command for creating projects is create --- docpages/install/install-xmake.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docpages/install/install-xmake.md b/docpages/install/install-xmake.md index f89398dec0..da106767a5 100644 --- a/docpages/install/install-xmake.md +++ b/docpages/install/install-xmake.md @@ -3,7 +3,7 @@ To install D++ on a project from XMake: - Ensure XMake [is correctly installed](https://xmake.io/#/guide/installation) -- Create a new XMake project if you haven't already one, using `xmake init ` +- Create a new XMake project if you haven't already one, using `xmake create ` - Update the `xmake.lua` file by adding the `dpp` package, below the minimum configuration: ~~~~~~~~~~~lua @@ -18,4 +18,4 @@ target("test-bot") add_packages("dpp") ~~~~~~~~~~~ -- Finally, run `xmake build` to download dependencies and build the project \ No newline at end of file +- Finally, run `xmake build` to download dependencies and build the project