This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # copied only the scripts from http://www.theopensourcerer.com/2012/12/how-to-install-openerp-7-0-on-ubuntu-12-04-lts/ | |
| sudo apt-get install openssh-server denyhosts | |
| sudo apt-get update | |
| sudo apt-get dist-upgrade | |
| sudo adduser --system --home=/opt/openerp --group openerp | |
| sudo apt-get install postgresql | |
| sudo su - postgres | |
| createuser --createdb --username postgres --no-createrole --no-superuser --pwprompt openerp | |
| #Enter password for new role: ******** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # vim: set ai expandtab: | |
| cmake_minimum_required(VERSION 3.2 FATAL_ERROR) | |
| # The following must be set BEFORE doing project() or eanble_language(). | |
| # ::-------------------------------------------------------------------------:: | |
| if (NOT CMAKE_BUILD_TYPE) | |
| message(STATUS "No build type defined; defaulting to 'Debug'") | |
| set(CMAKE_BUILD_TYPE "Debug" CACHE STRING | |
| "The type of build. Possible values are: Debug, Release, RelWithDebInfo and MinSizeRel.") |
OlderNewer