mirror of
https://github.com/glest/glest-source.git
synced 2025-02-22 18:54:58 +01:00
* build.zg.sh scripts deprected * update for BSD * removed checking for VLC (not implemented) * docs updated * Install.md created. * scripts moved to scripts/ directory
26 lines
835 B
Plaintext
26 lines
835 B
Plaintext
temp notes file (-andy5995)
|
|
|
|
# common options for Cmake prior to `make install`
|
|
|
|
cmake .. -DCMAKE_INSTALL_PREFIX=/usr
|
|
|
|
To see other install locations, use `cmake .. -LH`. In many cases, just
|
|
using CMAKE_INSTALL_PREFIX will be sufficient
|
|
|
|
|
|
# generating the man page
|
|
|
|
|
|
COMMAND ${XVFB_EXEC} --auto-servernum --server-num=770
|
|
${HELP2MAN} --name="3D multi-player real time strategy game" --section=6 -N -o
|
|
${HELP2MAN_OUT_PATH}${TARGET_NAME_MANPAGE} ${HELP2MAN_OUT_PATH}${TARGET_NAME}
|
|
DEPENDS ${TARGET_NAME})
|
|
ELSE()
|
|
add_custom_target(${TARGET_NAME_MANPAGE} ALL
|
|
COMMAND ${HELP2MAN} --name="${ZG_MANPAGE_DESCRIPTION}" --section=6 -N -o ${HELP2MAN_OUT_PATH}${TARGET_NAME_MANPAGE} ${HELP2MAN_OUT_PATH}${TARGET_NAME}
|
|
|
|
|
|
# Searcn and replace using 'git grep'
|
|
|
|
git grep -l 'original_text' | xargs sed -i 's/original_text/new_text/g'
|