Skip to content

Commit

Permalink
Add boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
nabijaczleweli committed May 31, 2016
1 parent 617baca commit dede748
Show file tree
Hide file tree
Showing 6 changed files with 167 additions and 236 deletions.
22 changes: 22 additions & 0 deletions .clang-format
@@ -0,0 +1,22 @@
---
Language : Cpp
BasedOnStyle : LLVM
AlignAfterOpenBracket : true
AlignEscapedNewlinesLeft : true
AlignConsecutiveAssignments : true
AllowShortFunctionsOnASingleLine : Inline
AlwaysBreakTemplateDeclarations : true
ColumnLimit : 160
ConstructorInitializerIndentWidth: 6
IndentCaseLabels : true
MaxEmptyLinesToKeep : 2
KeepEmptyLinesAtTheStartOfBlocks : false
NamespaceIndentation : All
PointerAlignment : Left
SpacesBeforeTrailingComments : 2
IndentWidth : 2
TabWidth : 2
UseTab : ForIndentation
SpaceBeforeParens : Never
...

250 changes: 14 additions & 236 deletions .gitignore
@@ -1,236 +1,14 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.userosscache
*.sln.docstates

# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs

# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
bld/
[Bb]in/
[Oo]bj/

# Visual Studio 2015 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/

# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*

# NUNIT
*.VisualState.xml
TestResult.xml

# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c

# DNX
project.lock.json
artifacts/

*_i.c
*_p.c
*_i.h
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc

# Chutzpah Test files
_Chutzpah*

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile

# Visual Studio profiler
*.psess
*.vsp
*.vspx
*.sap

# TFS 2012 Local Workspace
$tf/

# Guidance Automation Toolkit
*.gpState

# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user

# JustCode is a .NET coding add-in
.JustCode

# TeamCity is a build add-in
_TeamCity*

# DotCover is a Code Coverage Tool
*.dotCover

# NCrunch
_NCrunch_*
.*crunch*.local.xml
nCrunchTemp_*

# MightyMoose
*.mm.*
AutoTest.Net/

# Web workbench (sass)
.sass-cache/

# Installshield output folder
[Ee]xpress/

# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html

# Click-Once directory
publish/

# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
# TODO: Comment the next line if you want to checkin your web deploy settings
# but database connection strings (with potential passwords) will be unencrypted
*.pubxml
*.publishproj

# NuGet Packages
*.nupkg
# The packages folder can be ignored because of Package Restore
**/packages/*
# except build/, which is used as an MSBuild target.
!**/packages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/packages/repositories.config
# NuGet v3's project.json files produces more ignoreable files
*.nuget.props
*.nuget.targets

# Microsoft Azure Build Output
csx/
*.build.csdef

# Microsoft Azure Emulator
ecf/
rcf/

# Microsoft Azure ApplicationInsights config file
ApplicationInsights.config

# Windows Store app package directory
AppPackages/
BundleArtifacts/

# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!*.[Cc]ache/

# Others
ClientBin/
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.pfx
*.publishsettings
node_modules/
orleans.codegen.cs

# RIA/Silverlight projects
Generated_Code/

# Backup & report files from converting an old project file
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm

# SQL Server files
*.mdf
*.ldf

# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings

# Microsoft Fakes
FakesAssemblies/

# GhostDoc plugin setting file
*.GhostDoc.xml

# Node.js Tools for Visual Studio
.ntvs_analysis.dat

# Visual Studio 6 build log
*.plg

# Visual Studio 6 workspace options file
*.opt

# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
**/*.DesktopClient/ModelManifest.xml
**/*.Server/GeneratedArtifacts
**/*.Server/ModelManifest.xml
_Pvt_Extensions

# Paket dependency manager
.paket/paket.exe

# FAKE - F# Make
.fake/
*
!src
!src/**
!example
!example/**
!include
!include/**
!.git*
!.clang-format
!.travis.yml
!appveyor.yml
!*Makefile
!LICENSE
!README.md
24 changes: 24 additions & 0 deletions .travis.yml
@@ -0,0 +1,24 @@
language: generic
sudo: false
cache: apt

matrix:
include:
- env: CXX=g++-5 CC=gcc-5
addons:
apt:
packages:
- g++-5
sources: &sources
- llvm-toolchain-precise-3.8
- ubuntu-toolchain-r-test
- env: CXX=clang++-3.8 CC=clang-3.8
addons:
apt:
packages:
- clang-3.8
sources: *sources

script:
- make -j$(nproc)
- "for e in $(ls out/examples); do echo -n \"$e: \"; out/examples/$e; done"
46 changes: 46 additions & 0 deletions Makefile
@@ -0,0 +1,46 @@
# infoware - C++ System information Library
#
# Written in 2016 by nabijaczleweli <nab@gmail.com> and ThePhD <phdofthehouse@gmail.com>
#
# To the extent possible under law, the author(s) have dedicated all copyright and related
# and neighboring rights to this software to the public domain worldwide. This software is
# distributed without any warranty.
#
# You should have received a copy of the CC0 Public Domain Dedication along with this software.
# If not, see <http://creativecommons.org/publicdomain/zero/1.0/>


include configMakefile


SOURCES := $(sort $(wildcard src/*.cpp) $(wildcard src/**/*.cpp) $(wildcard src/**/**/*.cpp) $(wildcard src/**/**/**/*.cpp))
OBJECTS := $(patsubst src/%.cpp,$(BUILD)/obj/%$(OBJ),$(SOURCES))
EXAMPLES := $(wildcard examples/*.cpp)


.PHONY : clean all dll stlib examples

all : dll stlib examples

clean :
rm -rf $(BUILD)

examples : $(patsubst examples/%.cpp,$(BUILD)/examples/%$(EXE),$(EXAMPLES))
dll : $(BUILD)/$(PREDLL)infoware$(DLL)
stlib : $(BUILD)/libinfoware$(ARCH)


$(BUILD)/$(PREDLL)infoware$(DLL) : $(OBJECTS)
$(CXX) $(CXXAR) -shared $(PIC) -o$@ $^

$(BUILD)/libinfoware$(ARCH) : $(OBJECTS)
$(AR) crs $@ $^


$(BUILD)/obj/%$(OBJ) : src/%.cpp
@mkdir -p $(dir $@)
$(CXX) $(CXXAR) $(PIC) -Iinclude -c -o$@ $^

$(BUILD)/examples/%$(EXE) : examples/%.cpp $(OBJECTS)
@mkdir -p $(dir $@)
$(CXX) $(CXXAR) -Iinclude -o$@ $^
25 changes: 25 additions & 0 deletions appveyor.yml
@@ -0,0 +1,25 @@
version: "{build}"

skip_tags: false

platform: x64
configuration: Release

clone_folder: C:\cpp-localiser

install:
- set PATH=C:\msys64\mingw64\bin;C:\msys64\usr\bin;%PATH%
-
- bash -lc "pacman --needed --noconfirm -Sy pacman-mirrors"
- bash -lc "pacman --noconfirm -Sy"
- bash -lc "pacman --noconfirm -S mingw-w64-x86_64-gcc"

build: off
build_script:
- git submodule update --init --recursive
- make
- "bash -c \"for e in $(ls out/examples); do echo -n \\\"$e: \\\"; out/examples/$e; done\""

notifications:
- provider: Email
on_build_status_changed: true

0 comments on commit dede748

Please sign in to comment.