There are 2 libraries in Plugins: mozjs-31. This is SpiderMonkey library, built from https://github.com/cocos2d/Spidermonkey (not Mozilla official repository, used by cocos2d-js). mozjswrap. This is JSBinding library, it links C# and SpiderMonkey tog…
Build Assimp library for Android 首先各路教程中有推荐使用 NDK 或者 STANDALONE TOOLCHAIN 编译的,根据我的理解,这两种方式都是可以的,如果能直接使用 NDK 编译成功的话,就没有必要使用 STANDALONE TOOLCHAIN 了. NDK build assmip library cmake cmake -DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN} -DCMAKE_SYSTEM_NAME=Andr…
Description JSBinding is a tool enabling you to run actual javascript in Unity3D. It contains Mozilla SpiderMonkey JavaScript engine version 33 library. JSBinding's target users are people who would like to develop Unity applications with existing or…
The Robotics Library is an open source C++ library for robot kinematics, motion planning and control. The official website provides a Windows installer. But it's release only and has no debug information. To better debug into the library, we need to…
网上找练习的项目导入到myeclipse项目发现每个JSP 出现错误The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path 看情况应该是web服务器的问题. 但是,myeclipse我也配置好tomcat. 度娘说是在配置构建中 add library添加 Server Runtime 然后蒙了一圈. 在Myeclipse里找了一圈,硬是没发现在哪里可以添加 继续度娘Ser…
本文首发于个人博客https://kezunlin.me/post/cf628dd8/,欢迎阅读! guide to build qt library and use in another project Guide build qt library QObject class class SHARED_EXPORT CameraGrabber : public QObject { Q_OBJECT signals : void sendFrameTrash(int nCameraID, int…
裝完maven后,package或clean时出错:[WARN] [WARN] Some problems were encountered while building the effective model  [WARN] 'build.plugins.plugin.version' is missing fororg.apache.maven.plugins:maven.compiler.pluginIt is highly recommended to fix these problem…
最近在搭建Spring Boot项目<一步步搭建 Spring Boot maven 框架的工程>的时候,虽然设置JRE System Library为1.8,但是,当我 用 Maven Update Project构建后自动变回1.5.查资料后发现,主要原因在于每次Update Project时,它就会使用 Maven settings文件下的 JDK 默认版本,而且恰恰未在POM文件配置 JDK 版本.比较好的解决办法是同时修改Maven setting文件和项目的POM文件. ① 修改P…
Clean Lifecycle 运行mvn clean执行clean生命周期,包含三个生命周期阶段: pre-clean clean post-clean clean:clean会删除一次构建后的输出,默认删除_${basedir}/target/_目录(如果你没有自定义输出目录). 执行clean阶段的时候,maven可以执行任何绑定到pre-clean阶段的_goal_(目标). 例如:你想在pre-clean阶段时触发antrun:run_goal_来输出一个通知,或者想在构陷目录删除时,…
官方文档:http://maven.apache.org/plugins/index.html# 这里主要介绍compiler插件的配置.http://maven.apache.org/plugins/maven-compiler-plugin/ 默认的JDK编译版本是1.5,并不适合目前主流的1.6以上的开发环境,需要进行单独配置(示例为1.8). 1,单独在某个项目的pom.xml中配置,仅适用该项目 官方文档 <project> [...] <build> [...] <…