adding SimpleJSON as submodule

This commit is contained in:
2016-03-31 16:54:05 +02:00
parent 59abad41a9
commit 81153ee0b3
3 changed files with 9 additions and 1 deletions

3
.gitmodules vendored Normal file
View File

@@ -0,0 +1,3 @@
[submodule "lib/SimpleJSON"]
path = lib/SimpleJSON
url = https://github.com/MJPA/SimpleJSON

View File

@@ -55,6 +55,7 @@ if(USE_SSE)
endif(USE_SSE)
include_directories(./include/)
include_directories(./lib/SimpleJSON/src/)
set (LIBRARY_SOURCES
src/sse_mathfun.cpp
@@ -68,6 +69,9 @@ set (LIBRARY_SOURCES
src/NeuralNetwork/FeedForward/Network.cpp
src/NeuralNetwork/Recurrent/Network.cpp
src/NeuralNetwork/Neuron.cpp
lib/SimpleJSON/src/JSON.cpp
lib/SimpleJSON/src/JSONValue.cpp
)
add_library(NeuralNetwork STATIC ${LIBRARY_SOURCES})
@@ -126,4 +130,4 @@ set_property(TEST backpropagation_perf PROPERTY LABELS perf)
add_test(recurrent_perf tests/recurrent_perf)
set_property(TEST recurrent_perf PROPERTY LABELS perf)
ENDIF(ENABLE_TESTS)
ENDIF(ENABLE_TESTS)

1
lib/SimpleJSON Submodule

Submodule lib/SimpleJSON added at 2acd71acdc