Skip to content
This repository was archived by the owner on Nov 17, 2019. It is now read-only.

Commit c61c7da

Browse files
committed
Initial commit
0 parents  commit c61c7da

File tree

105 files changed

+16421
-0
lines changed

Some content is hidden

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

105 files changed

+16421
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Visual Studio cache/options directory
2+
.vs/
3+
4+
# CMake output/build directory
5+
out/*

.gitmodules

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[submodule "CWTCore"]
2+
path = CWTCore
3+
url = https://github.com/CWTesseract/CWTCore
4+
[submodule "wil"]
5+
path = wil
6+
url = https://github.com/microsoft/wil

CMakeLists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
cmake_minimum_required (VERSION 3.8)
2+
3+
project(cwapy_root)
4+
5+
add_subdirectory ("CWTCore")
6+
add_subdirectory ("LiveCubReload")

CMakeSettings.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "x64-Clang-Release",
5+
"generator": "Ninja",
6+
"configurationType": "RelWithDebInfo",
7+
"buildRoot": "${projectDir}\\out\\build\\${name}",
8+
"installRoot": "${projectDir}\\out\\install\\${name}",
9+
"cmakeCommandArgs": "",
10+
"buildCommandArgs": "-v",
11+
"ctestCommandArgs": "",
12+
"inheritEnvironments": [ "clang_cl_x64" ],
13+
"variables": []
14+
}
15+
]
16+
}

CWTCore

Submodule CWTCore added at 19cddd1

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Andrew Gutekanst
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

LiveCubReload/CMakeLists.txt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
cmake_minimum_required (VERSION 3.8)
2+
project(LiveCubReload)
3+
4+
add_subdirectory(efsw)
5+
6+
# Create our library.
7+
add_library (LiveCubReload SHARED "src/main.cpp")
8+
9+
# Link CWTCore.
10+
option(STATIC_LIB "" ON)
11+
target_link_libraries (LiveCubReload PRIVATE efsw)
12+
target_link_libraries (LiveCubReload LINK_PUBLIC CWTCore)
13+
14+
# Add the CWTCore includes.
15+
target_include_directories (LiveCubReload PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include)
16+
target_include_directories (LiveCubReload PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/../CWTCore/include)
17+
target_include_directories (LiveCubReload PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/efsw/include)
18+
19+
20+

LiveCubReload/efsw/.hg_archival.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
repo: 78c2ea8c48b213ee0078d6326a1dd719d0844764
2+
node: e6afbec564e249771046c714b0c7f2154e4c7fef
3+
branch: default
4+
latesttag: 1.0.0
5+
latesttagdistance: 12
6+
changessincelatesttag: 12

LiveCubReload/efsw/.hgignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
syntax: glob
2+
bin/*
3+
obj/*
4+
make/*
5+
lib/*
6+
*.DS_Store*
7+
project/qtcreator-osx/efsw.creator.user.2.6pre1
8+
project/qtcreator-osx/efsw.creator.user.4bdfc43

LiveCubReload/efsw/.hgtags

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
854e6d23258ed18984c1dcf0396050a66e5b13fb 1.0.0

0 commit comments

Comments
 (0)