Skip to content

Commit b8116a3

Browse files
authored
IT-1225: Initial Implementation (#2)
1 parent 42a18c0 commit b8116a3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+7618
-88
lines changed

.github/pull_request_template.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
## What type of PR is this? (check all applicable)
3+
4+
- [ ] Refactor
5+
- [ ] Feature
6+
- [ ] Bug Fix
7+
- [ ] Optimization
8+
- [ ] Documentation Update
9+
10+
## Description
11+
_Please provide a brief description of the changes introduced by this pull
12+
request._
13+
14+
## Related Issues & Documents
15+
16+
- Related Issue #
17+
- Closes #
18+
19+
## Testing Instructions
20+
21+
_Please replace this line with instructions on how to test your changes, a note
22+
on the OS and python versions this has been tested on, as well as any relevant
23+
images/screenshots._
24+
25+
## Added/updated tests?
26+
<!-- We encourage you to write unit tests when possible. -->
27+
28+
- [ ] Yes
29+
- [ ] No, and this is why: _please replace this line with details on why tests
30+
have not been included_
31+
- [ ] I need help with writing tests

.gitignore

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Hidden project directories
2+
build
3+
third_party
4+
test_data
5+
6+
# Prerequisites
7+
*.d
8+
9+
# Compiled Object files
10+
*.slo
11+
*.lo
12+
*.o
13+
*.obj
14+
15+
# Precompiled Headers
16+
*.gch
17+
*.pch
18+
19+
# Compiled Dynamic libraries
20+
*.so
21+
*.dylib
22+
*.dll
23+
24+
# Fortran module files
25+
*.mod
26+
*.smod
27+
28+
# Compiled Static libraries
29+
*.lai
30+
*.la
31+
*.a
32+
*.lib
33+
34+
# Executables
35+
*.exe
36+
*.out
37+
*.app
38+
39+
# IDE
40+
.idea/
41+
.vscode/
42+
43+
# Mac
44+
*.DS_Store

CMakeLists.txt

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
cmake_minimum_required(VERSION 3.5)
2+
3+
project(isxcore)
4+
5+
set(ISX_CMAKE_TOOLS_DIR ${CMAKE_CURRENT_LIST_DIR}/tools/cmake)
6+
include(${ISX_CMAKE_TOOLS_DIR}/configure.cmake)
7+
8+
include(${ISX_CMAKE_TOOLS_DIR}/core.cmake)
9+
10+
include(${ISX_CMAKE_TOOLS_DIR}/mostest.cmake)

0 commit comments

Comments
 (0)