From 874a42212e4af15707603f5de7b145b52a61bbca Mon Sep 17 00:00:00 2001 From: Jung-Kwnag Lee Date: Fri, 26 Aug 2022 23:35:16 +0900 Subject: [PATCH] Update README.md --- README.md | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 9a00d40..79c8c61 100644 --- a/README.md +++ b/README.md @@ -228,7 +228,7 @@ If the SDK and WDK versions are different, builds are more likely to fail. **If ```Batch git clone https://github.com/ntoskrnl7/crtsys - cd crtsys/test + cd crtsys build_all.bat test\app build_all.bat test\driver ``` @@ -313,15 +313,19 @@ If the SDK and WDK versions are different, builds are more likely to fail. **If * If you enable CRTSYS_NTL_MAIN as shown below, define ntl::main as the entry point. **(recommend)** - ```CMake - set(CRTSYS_NTL_MAIN ON) - ``` + * CMakeLists.txt + + ```CMake + set(CRTSYS_NTL_MAIN ON) + ``` * If you disable CRTSYS_NTL_MAIN as shown below, define DriverEntry as the entry point, which is different from the previous one. - ```CMake - set(CRTSYS_NTL_MAIN OFF) - ``` + * CMakeLists.txt + + ```CMake + set(CRTSYS_NTL_MAIN OFF) + ``` Below is example code from a project with ntl::main set as entry point.