Skip to content

Commit a8e8e46

Browse files
author
LAPTOP\Stefán Ö Sigmundsson
committed
Committing.
0 parents  commit a8e8e46

File tree

14 files changed

+1972
-0
lines changed

14 files changed

+1972
-0
lines changed
99.4 KB
Binary file not shown.
108 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.

Software build/gpl-3.0.txt

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Copyright © 2017, 2019 eMedia Intellect.
2+
3+
# This file is part of eMI NumberToWord Library.
4+
5+
# eMI NumberToWord Library is free software: you can redistribute it and/or modify
6+
# it under the terms of the GNU General Public License as published by
7+
# the Free Software Foundation, either version 3 of the License, or
8+
# (at your option) any later version.
9+
10+
# eMI NumberToWord Library is distributed in the hope that it will be useful,
11+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
# GNU General Public License for more details.
14+
15+
# You should have received a copy of the GNU General Public License
16+
# along with eMI NumberToWord Library. If not, see <http://www.gnu.org/licenses/>.
17+
18+
all:
19+
if [ ! -d ./32-bit/ ]; then mkdir ./32-bit/; fi
20+
21+
g++ -m32 -pedantic -std=c++14 -Wall -Weffc++ -Wextra -Wshadow ../../Library/main.cpp ../../Library/NumberToWord/Converter.cpp -o ./32-bit/NumberToWord
22+
23+
if [ ! -d ./64-bit/ ]; then mkdir ./64-bit/; fi
24+
25+
g++ -m64 -pedantic -std=c++14 -Wall -Weffc++ -Wextra -Wshadow ../../Library/main.cpp ../../Library/NumberToWord/Converter.cpp -o ./64-bit/NumberToWord
26+
27+
clean:
28+
if [ -d ./32-bit/ ]; then rm --recursive ./32-bit/; fi
29+
30+
if [ -d ./64-bit/ ]; then rm --recursive ./64-bit/; fi
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
:: Copyright © 2017, 2019 eMedia Intellect.
2+
3+
:: This file is part of eMI NumberToWord Library.
4+
5+
:: eMI NumberToWord Library is free software: you can redistribute it and/or modify
6+
:: it under the terms of the GNU General Public License as published by
7+
:: the Free Software Foundation, either version 3 of the License, or
8+
:: (at your option) any later version.
9+
10+
:: eMI NumberToWord Library is distributed in the hope that it will be useful,
11+
:: but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
:: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
:: GNU General Public License for more details.
14+
15+
:: You should have received a copy of the GNU General Public License
16+
:: along with eMI NumberToWord Library. If not, see <http://www.gnu.org/licenses/>.
17+
18+
msbuild ".\eMI NumberToWord Library.msbuild" /p:platform=Win32 /p:configuration=Release
19+
20+
msbuild ".\eMI NumberToWord Library.msbuild" /p:platform=x64 /p:configuration=Release
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Copyright © 2017, 2019 eMedia Intellect.
2+
3+
# This file is part of eMI NumberToWord Library.
4+
5+
# eMI NumberToWord Library is free software: you can redistribute it and/or modify
6+
# it under the terms of the GNU General Public License as published by
7+
# the Free Software Foundation, either version 3 of the License, or
8+
# (at your option) any later version.
9+
10+
# eMI NumberToWord Library is distributed in the hope that it will be useful,
11+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
# GNU General Public License for more details.
14+
15+
# You should have received a copy of the GNU General Public License
16+
# along with eMI NumberToWord Library. If not, see <http://www.gnu.org/licenses/>.
17+
18+
Remove-Item -ErrorAction 'Ignore' -Force -Path '.\Win32' -Recurse
19+
20+
Remove-Item -ErrorAction 'Ignore' -Force -Path '.\x64' -Recurse
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
Copyright © 2017, 2019 eMedia Intellect.
4+
5+
This file is part of eMI NumberToWord Library.
6+
7+
eMI NumberToWord Library is free software: you can redistribute it and/or modify
8+
it under the terms of the GNU General Public License as published by
9+
the Free Software Foundation, either version 3 of the License, or
10+
(at your option) any later version.
11+
12+
eMI NumberToWord Library is distributed in the hope that it will be useful,
13+
but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
GNU General Public License for more details.
16+
17+
You should have received a copy of the GNU General Public License
18+
along with eMI NumberToWord Library. If not, see <http://www.gnu.org/licenses/>.
19+
-->
20+
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
21+
<ItemGroup>
22+
<ProjectConfiguration Include="Debug|x64">
23+
<Configuration>Debug</Configuration>
24+
<Platform>x64</Platform>
25+
</ProjectConfiguration>
26+
<ProjectConfiguration Include="Debug|Win32">
27+
<Configuration>Debug</Configuration>
28+
<Platform>Win32</Platform>
29+
</ProjectConfiguration>
30+
<ProjectConfiguration Include="Release|x64">
31+
<Configuration>Release</Configuration>
32+
<Platform>x64</Platform>
33+
</ProjectConfiguration>
34+
<ProjectConfiguration Include="Release|Win32">
35+
<Configuration>Release</Configuration>
36+
<Platform>Win32</Platform>
37+
</ProjectConfiguration>
38+
</ItemGroup>
39+
<ItemGroup>
40+
<ClCompile Include="..\..\Library\main.cpp"/>
41+
<ClCompile Include="..\..\Library\NumberToWord\Converter.cpp"/>
42+
</ItemGroup>
43+
<PropertyGroup>
44+
<AssemblyName>NumberToWord</AssemblyName>
45+
<IntermediateOutputPath>.\$(Platform)\$(Configuration)\</IntermediateOutputPath>
46+
<OutDir>.\$(Platform)\$(Configuration)\</OutDir>
47+
<PlatformToolset>v142</PlatformToolset>
48+
</PropertyGroup>
49+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.default.props"/>
50+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/>
51+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
52+
</Project>

0 commit comments

Comments
 (0)