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
code --install-extension adobe.extendscript-debug | |
code --install-extension adpyke.vscode-sql-formatter | |
code --install-extension alefragnani.bookmarks | |
code --install-extension analytic-signal.preview-pdf | |
code --install-extension arahata.linter-actionlint | |
code --install-extension bierner.github-markdown-preview | |
code --install-extension bierner.markdown-emoji | |
code --install-extension bierner.markdown-footnotes | |
code --install-extension bierner.markdown-mermaid | |
code --install-extension bierner.markdown-preview-github-styles |
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
# build engine library and all tests | |
# 指定運行 cmake 所需要的最低版本,這裡指定了 3.6 | |
# 可以使用 cmake --version 來確認電腦上的版本 | |
cmake_minimum_required(VERSION 3.6) | |
project(Cocos2d-x) | |
# cocos2dx root path | |
set(COCOS2DX_ROOT_PATH ${CMAKE_CURRENT_SOURCE_DIR}) |
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
FROM ubuntu | |
MAINTAINER Eric Mill "[email protected]" | |
# turn on universe packages | |
RUN echo "deb http://archive.ubuntu.com/ubuntu raring main universe" > /etc/apt/sources.list | |
RUN apt-get update | |
# basics | |
RUN apt-get install -y nginx openssh-server git-core openssh-client curl | |
RUN apt-get install -y nano |