diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 38850d5..082a2e7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,8 @@ cmake_minimum_required(VERSION 3.5 FATAL_ERROR) project(jvpp) include(CheckCCompilerFlag) - +# Add custom modules +set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/modules") # # Convert to camel case string from lower case underscored string. # @@ -147,7 +148,7 @@ else() endif() add_subdirectory(java) - +add_subdirectory(docs) # enable Tests include(FindPythonInterp) if(PYTHONINTERP_FOUND) |