diff options
author | Andrew Kaster <akaster@serenityos.org> | 2021-07-12 01:31:47 -0600 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-12 12:26:52 +0200 |
commit | ca920ba082585f00c8f4abf9f26b04d5afe5f202 (patch) | |
tree | 30f33a64334d1f8430e289c4d7b140795f217ab7 /Documentation/UsingQtCreator.md | |
parent | f26d4e1d90bab65f0268d5e9177ee73a520e5da4 (diff) | |
download | serenity-ca920ba082585f00c8f4abf9f26b04d5afe5f202.zip |
Meta+Documentation: Remove unused -DDEBUG from build
Diffstat (limited to 'Documentation/UsingQtCreator.md')
-rw-r--r-- | Documentation/UsingQtCreator.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/UsingQtCreator.md b/Documentation/UsingQtCreator.md index 50f95162fb..08642cf695 100644 --- a/Documentation/UsingQtCreator.md +++ b/Documentation/UsingQtCreator.md @@ -13,7 +13,7 @@ First, make sure you have a working toolchain and can build and run SerenityOS. * Set `Add to version control` to `<None>`. Click Finish. * In your shell, go to your SerenityOS project directory, and invoke the `Meta/refresh-serenity-qtcreator.sh` script to regenerate the `serenity.files` file. You will also have to do this every time you delete or add a new file to the project. * Edit the `serenity.config` file (In Qt Creator, hit ^K or CMD+K on a Mac to open the search dialog, type the name of the file and hit return to open it) -* Add the following `#define`s to the file: `DEBUG`, `SANITIZE_PTRS`, and `KERNEL`. Depending on what you are working on, you need to have that last define commented out. If you're planning on working in the userland, comment out `#define KERNEL`. If you're working on the Kernel, then uncomment `#define KERNEL`. +* Add the following `#define`s to the file: `SANITIZE_PTRS`, and `KERNEL`. Depending on what you are working on, you need to have that last define commented out. If you're planning on working in the userland, comment out `#define KERNEL`. If you're working on the Kernel, then uncomment `#define KERNEL`. * Edit the `serenity.cxxflags` file to say `-std=c++2a -m32` * Edit the `serenity.includes` file, add the following lines: |