docs: s/no tbe/not be/
This commit is contained in:
parent
de762feb87
commit
ae924b01a0
|
@ -105,7 +105,7 @@ foolib = shared_library('foobar', sources : 'foobar.c',\
|
|||
exe = executable('testfoobar', 'tester.c', link : foolib)
|
||||
add_test('test library', exe)`
|
||||
|
||||
First we build a shared library named foobar. It is marked installable, so running `ninja install` installs it to the library directory (the system knows which one so the user does not have to care). Then we build a test executable which is linked against the library. It will no tbe installed, but instead it is added to the list of unit tests, which can be run with the command `ninja test`.
|
||||
First we build a shared library named foobar. It is marked installable, so running `ninja install` installs it to the library directory (the system knows which one so the user does not have to care). Then we build a test executable which is linked against the library. It will not be installed, but instead it is added to the list of unit tests, which can be run with the command `ninja test`.
|
||||
|
||||
Above we mentioned precompiled headers as a feature not supported by other build systems. Here's how you would use them.
|
||||
|
||||
|
|
Loading…
Reference in New Issue