diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-22 10:39:13 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-22 10:39:13 +0300 |
commit | 9368c370f319ec9b1c3c8fda221f8afc0a39dccb (patch) | |
tree | bef28cccf1c538b580f4e3595f9f5c87f01a39d5 | |
parent | cmake: install() PDB files (diff) | |
download | windows7-drivers-9368c370f319ec9b1c3c8fda221f8afc0a39dccb.tar.gz windows7-drivers-9368c370f319ec9b1c3c8fda221f8afc0a39dccb.zip |
um: README update
-rw-r--r-- | um/README.md | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/um/README.md b/um/README.md index a983900..9a81633 100644 --- a/um/README.md +++ b/um/README.md @@ -18,18 +18,6 @@ Building Create the build files using CMake and build the project using Visual Studio. -* **Customization.** -The runtime libraries are linked statically by default (when this project is -the root CMake project). -You can link the runtime dynamically by passing `-D USE_STATIC_RUNTIME=OFF` to +The runtime libraries are linked statically by default. +You can link the runtime dynamically by passing `-D CC_STATIC_RUNTIME=OFF` to `cmake`. -* **Example.** -In the example below, the project directory is -"C:\workspace\personal\windows7-drivers\um" and Visual Studio 2013 is used, -targeting x86. - - > cmake -G "Visual Studio 12 2013" C:\workspace\personal\windows7-drivers\um - ... - - > cmake --build . --config release -- /m - ... |