Skip to content

Commit

Permalink
I modified CMakeLists.txt and Doxyfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Delgrange Camille Lucette Gabrielle authored and Delgrange Camille Lucette Gabrielle committed Nov 2, 2019
1 parent 43ca232 commit 4af6b63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SET(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3")
option(test "Build tests." ON)
link_directories(${CMAKE_SOURCE_DIR}/lib)

add_executable(NeuronNet-master src/main.cpp src/random.cpp src/network.cpp src/neuron.cpp src/simulation.cpp)
add_executable(NeuronNet src/main.cpp src/random.cpp src/network.cpp src/neuron.cpp src/simulation.cpp)
if(test)
enable_testing()
find_package(GTest)
Expand All @@ -20,7 +20,7 @@ SET(GTEST_BOTH_LIBRARIES Libgtest_main.a)
endif(NOT GTEST_FOUND)
add_executable(testRNG src/random.cpp src/network.cpp src/neuron.cpp src/test_main.cpp src/simulation.cpp)
target_link_libraries(testRNG ${GTEST_BOTH_LIBRARIES} pthread)
add_test(NeuronNet-master testRNG)
add_test(NeuronNet testRNG)
endif(test)

find_package(Doxygen)
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ DOXYFILE_ENCODING = UTF-8
# title of most generated pages and in a few other places.
# The default value is: My Project.

PROJECT_NAME = "NeuronNet-master"
PROJECT_NAME = "NeuronNet"

# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
# could be handy for archiving the generated documentation or if some version
Expand Down

0 comments on commit 4af6b63

Please sign in to comment.