build

Build a ZenTao Server on Linux

隐身守侯 提交于 2020-03-20 06:10:15
Download xampp for linux on Apache Friends , file name: xampp-linux-1.8.3-2-installer.run; Intallation guide: Linux FAQs on Apache Friends $ chmod 755 xampp-linux-1.8.3-2-installer.run $ sudo ./xampp-linux-1.8.3-2-installer.run $ sudo /opt/lampp/lampp start Verify: browse http://10.21.3.8, you can see the xampp homepage. Downlaod zentao source code pack ZenTaoPMS.5.2.1.zip; unzip ZenTaoPMS.5.2.1.zip to /opt/lampp/htdocs; browse "http://localhost/zentaopms/www" to start install process. If not, try http://localhost/zentaopms/www/install.php; zentao parameter:: Host port: 3306; Database user:

使用批处理build vs2005的工程

倖福魔咒の 提交于 2020-03-19 21:33:58
VCBuild @echo off vcbuild.exe buidTest.sln "Release|Win32" if errorlevel 1 goto BUILDERROR echo 成功 goto end :BUILDERROR echo 失败 :end 示例如下: @echo off if not exist "%vs80comntools%vsvars32.bat" goto missing call "%vs80comntools%vsvars32.bat" rem call vcbuild.exe your_sln_name .sln "Your Configuration name " /rebuild echo ** building XXX ** cd .\XXX\xxx call vcbuild.exe ".\xxxx.vcproj" "Release|Win32" /rebuild cd ..\..\.. rem ** xxx items ** cd .\xxxxcall vcbuild.exe ".\xxxxsln" "Release|Win32" /rebuild cd ..\.. goto :eof :missing echo the visual studio install is missing. goto :eof

cordova 一个将web应用程序封装成app的框架

冷暖自知 提交于 2020-03-19 21:27:11
cordova的详细介绍请参考这个链接:http://www.zhoujingen.cn/blog/7034.html 我接下来主要将如何搭建。 1.首先你需要下载几样东西 1.jdk. 2.android_SDK. 2.安装这两个,并配置环境变量 这里jdk的环境变量配置我就不细说了。 android_SDK的环境变量配置 C:\Development\android-sdk\platform-tools C:\Development\android-sdk\tools 将这两个目录添加到系统path中,注意,这里一定是你的android-sdk目录,不要直接用我的奥! 3,下载cordova并安装平台等操作 下载cordova是用node本身自带的npm,所以在这之前你还需要安装node(这里默认你已经安装好了node) 首先你可以在某个盘里面新建一个文件夹,名字随意命名(webApp)。然后在命令行中进入到那个目录下面,在执行下面的操作。 1 安装Cordova Cordova的命令行运行在 Node.js 上面并且可以通过 NPM 安装。 根据 平台具体指导 安装相应平台的依赖。打开命令提示符或终端,然后键入 npm install -g cordova . 例如:$ npm install -g cordova 2 创建一个项目 使用命令行创建一个空的Cordova项目

Using cmake to build a static library of static libraries

前提是你 提交于 2020-03-19 06:30:33
问题 I'm trying to create a static library of static libraries. Here's my CMakeLists.txt cmake_minimum_required(VERSION 2.8) project(myRtspClient) add_subdirectory(../third_party/Base64_live555 base64_live555) add_subdirectory(../third_party/md5 md5) add_subdirectory(../third_party/JRTPLIB jrtplib) include_directories(include) include_directories(../third_party/Base64_live555/include) include_directories(../third_party/md5/include) include_directories(jrtplib/src) include_directories(../third

Android studio使用异常集锦

大憨熊 提交于 2020-03-19 05:01:40
1、快捷键设置: 菜单栏->File->Settings : 搜索Keymap,设置为Eclipse. 2、打开studio,一直在加载http\://services.gradle.org/distributions/gradle-2.14.1-all.zip的解决办法: studio自动加载极其慢,如果无法下载,建议手动下载(Ubuntu下载极慢,建议在独立的Window系统下载):地址https://services.gradle.org/distributions; 或去我的百度云下载,具体可以联系我。 根据项目需要的版本:在gradle-wrapper.properties中 distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip。去下载gradle-2.14.1-all.zip。 根据你项目需要的版本下载对应的zip包。 放在/home/xiaozhilong(换成你的电脑名)/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv; 8bnwg5hd3w55iofp58khbp6yv是studio启动项目时自动生成的,如果没有生成,重新启动一次再关闭就行了。 菜单栏->File-

golang 终端go命令使用

女生的网名这么多〃 提交于 2020-03-18 13:52:01
查看可用命令 直接在终端中输入 go help 即可显示所有的 go 命令以及相应命令功能简介,主要有下面这些: build: 编译包和依赖 clean: 移除对象文件 doc: 显示包或者符号的文档 env: 打印go的环境信息 bug: 启动错误报告 fix: 运行go tool fix fmt: 运行gofmt进行格式化 generate: 从processing source生成go文件 get: 下载并安装包和依赖 install: 编译并安装包和依赖 list: 列出包 run: 编译并运行go程序 test: 运行测试 tool: 运行go提供的工具 version: 显示go的版本 vet: 运行go tool vet 命令的使用方式为: go command [args] , 除此之外,可以使用 go help <command> 来显示指定命令的更多帮助信息。 在运行 go help 时,不仅仅打印了这些命令的基本信息,还给出了一些概念的帮助信息: c: Go和c的相互调用 buildmode: 构建模式的描述 filetype: 文件类型 gopath: GOPATH环境变量 environment: 环境变量 importpath: 导入路径语法 packages: 包列表的描述 testflag: 测试符号描述 testfunc: 测试函数描述 同样使用

error: This is probably not a problem with npm. There is likely additional logging output above

和自甴很熟 提交于 2020-03-18 06:24:08
问题 In my project, I'm using Angular6 for the frontend. Now what I'm trying to do is deploy my project which is in remote server into the actual server. I'm using npm run build -prod command to build the frontend first. But I can't build my project since the following error occurs again and again, npm ERR! code ELIFECYCLE npm ERR! errno 134 npm ERR! Trackit-Revamp@6.0.0 build: `ng build --prod --build-optimizer --aot` npm ERR! Exit status 134 npm ERR! npm ERR! Failed at the Trackit-Revamp@6.0.0

error: This is probably not a problem with npm. There is likely additional logging output above

好久不见. 提交于 2020-03-18 06:22:13
问题 In my project, I'm using Angular6 for the frontend. Now what I'm trying to do is deploy my project which is in remote server into the actual server. I'm using npm run build -prod command to build the frontend first. But I can't build my project since the following error occurs again and again, npm ERR! code ELIFECYCLE npm ERR! errno 134 npm ERR! Trackit-Revamp@6.0.0 build: `ng build --prod --build-optimizer --aot` npm ERR! Exit status 134 npm ERR! npm ERR! Failed at the Trackit-Revamp@6.0.0

Java. Warning – Build path specifies execution environment J2SE-1.5

我只是一个虾纸丫 提交于 2020-03-16 18:13:21
MyEclipse新建Web Project 之后显示警告信息,我们想除之而后快。 问题描述: 在下方的 Problems 选项卡中可以看见工程警告: Description Resource Path Location Type Build path specifies execution environment JavaSE-1.6. There are no JREs installed in the workspace that are strictly compatible with this environment. TestStructs Build path JRE System Library Problem 解决方法: 右键当前项目,选择 properties,在新窗口中选择 java build path,然后切换到 Libraries 选项卡,移除“JRE System Library[J2SE 1.6]”: 接着单击“Add Library”,在新窗口中选择 JRE System Library: 最后选择 “Executin Environment” 或默认 Workspace default JRE: 替换之后如下: 总结体会: 以前遇到这种情况直接无视,只要程序不出现错误就算通关。现在不知为何有点强迫症,无法容忍程序中的警告。可能是心境不同了吧

Browserslist: caniuse-lite is outdated. Please run next command `npm update caniuse-lite browserslist`

烈酒焚心 提交于 2020-03-16 08:30:45
执行npm run build的时候报这个错, D:\>npm run build > vue-admin-template@3.8.0 build D:\SVN\webTHHL\THHLOA\THHLWebUI > node build/build.js / building for production...Browserslist: caniuse-lite is outdated. Please run next command `npm update caniuse-lite browserslist` (node:13612) UnhandledPromiseRejectionWarninD: BrowserslistError: Unknown browser kaios at checkName (D:\SVN\webTHHL\THHLOA\THHLWebUI\node_modules\caniuse-api\node_modules\browserslist\index.js:132:20) at Function.select (D:\SVN\webTHHL\THHLOA\THHLWebUI\node_modules\caniuse-api\node_modules\browserslist\index.js:830:18) 根据提示,执行 npm update