1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
Useful targets for developpers
==============================
All exemples are shown with `make`, but feel free to use `ninja` which is 20% faster. Obviously, you can also enter `cmake --build . --target <target>`.
targets that do not alter the source tree:
------------------------------------------
build main lib
$ make main
build backend lib
$ make backend
build editor lib
$ make editor
build webkit lib
$ make webkit
build xiphos_html lib
$ make xiphos_html
build help
$ make mhelp
targets for updating source files:
----------------------------------
updating xiphos pot file
$ make xiphos_pot
updating all po files
$ make xiphos_po
updating a specific po file
$ make xiphos_<lang>.po
updating help pot file
$ make mhelp_pot
updating help all po files
$ make mhelp_po
updating a specific help po file
$ make mhelp_<lang>.po
|