Skip to content

Commit 874a422

Browse files
committed
Update README.md
1 parent dc562c8 commit 874a422

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

README.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ If the SDK and WDK versions are different, builds are more likely to fail. **If
228228
229229
```Batch
230230
git clone https://github.com/ntoskrnl7/crtsys
231-
cd crtsys/test
231+
cd crtsys
232232
build_all.bat test\app
233233
build_all.bat test\driver
234234
```
@@ -313,15 +313,19 @@ If the SDK and WDK versions are different, builds are more likely to fail. **If
313313
314314
* If you enable CRTSYS_NTL_MAIN as shown below, define ntl::main as the entry point. **(recommend)**
315315
316-
```CMake
317-
set(CRTSYS_NTL_MAIN ON)
318-
```
316+
* CMakeLists.txt
317+
318+
```CMake
319+
set(CRTSYS_NTL_MAIN ON)
320+
```
319321
320322
* If you disable CRTSYS_NTL_MAIN as shown below, define DriverEntry as the entry point, which is different from the previous one.
321323
322-
```CMake
323-
set(CRTSYS_NTL_MAIN OFF)
324-
```
324+
* CMakeLists.txt
325+
326+
```CMake
327+
set(CRTSYS_NTL_MAIN OFF)
328+
```
325329
326330
Below is example code from a project with ntl::main set as entry point.
327331

0 commit comments

Comments
 (0)