+ added some useful files
This commit is contained in:
parent
84b1515a56
commit
78c68ebf30
5 changed files with 28 additions and 0 deletions
7
build_gcc_linux_debug
Executable file
7
build_gcc_linux_debug
Executable file
|
|
@ -0,0 +1,7 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
mkdir debug
|
||||
cd debug
|
||||
cmake -DCMAKE_BUILD_TYPE=Debug ..
|
||||
make
|
||||
cd ..
|
||||
7
build_gcc_linux_release
Executable file
7
build_gcc_linux_release
Executable file
|
|
@ -0,0 +1,7 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
mkdir release
|
||||
cd release
|
||||
cmake ..
|
||||
make
|
||||
cd ..
|
||||
4
distclean
Executable file
4
distclean
Executable file
|
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
rm -rf debug
|
||||
rm -rf release
|
||||
5
package_deb
Executable file
5
package_deb
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
cd release
|
||||
cpack -G DEB
|
||||
cd ..
|
||||
5
package_rpm
Executable file
5
package_rpm
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
cd release
|
||||
cpack -G RPM
|
||||
cd ..
|
||||
Reference in a new issue