dcdadc created repository.

Merged and Committed by midipix 9 years ago
    created repository.
    
        
file added
+20
COPYING.NTAPI ADDED
@@ -0,0 +1,20 @@
1
+ /*****************************************************************************/
2
+ /* */
3
+ /* ntapi: Native API core library */
4
+ /* */
5
+ /* Copyright (C) 2013,2014,2015 Z. Gilboa */
6
+ /* */
7
+ /* This program 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 2 of the License, or */
10
+ /* (at your option) version 3 of the License. */
11
+ /* */
12
+ /* This program 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 this program. If not, see <http://www.gnu.org/licenses/>. */
19
+ /* */
20
+ /*****************************************************************************/
file added
+10
LICENSE ADDED
@@ -0,0 +1,10 @@
1
+ ntapi: Native API core library
2
+ ------------------------------
3
+
4
+ Copyright (C) 2013,2014,2015 Z. Gilboa
5
+
6
+ This library is currently released under the GPLv2 and GPLv3 (see
7
+ COPYING.NTAPI for the relevant text). If you wish to use this
8
+ library with a different license, please contact the author
9
+ at <writeonce at midipix dot org> and briefly describe the type
10
+ of license (or license exception) that you would like to obtain.
file added
+38
README ADDED
@@ -0,0 +1,38 @@
1
+ ntapi: Native API core library
2
+ ------------------------------
3
+
4
+
5
+ how to build (quick)
6
+ --------------------
7
+
8
+ git clone git://midipix.org/ntapi &&
9
+ mkdir ntapi_build &&
10
+ cd ntapi_build &&
11
+ ../ntapi/configure --prefix=$PREFIX &&
12
+ make &&
13
+ make install
14
+
15
+
16
+ supported targets
17
+ -----------------
18
+ + x86_64-nt64-midipix (default)
19
+ + x86_64-w64-mingw32
20
+ + i686-nt32-midipix
21
+ + i686-w64-mingw32
22
+
23
+
24
+ supported compilers
25
+ -------------------
26
+ + gcc
27
+ + clang
28
+ + Visual Studio
29
+
30
+
31
+ IDE project files (forthcoming)
32
+ -------------------------------
33
+ + CodeLite
34
+ + Code::Blocks
35
+ + Visual Studio
36
+
37
+ * above project files will not be part of the project
38
+ repository, but rather distributed separately.