Skip to content

Commit

Permalink
temporarily remove lua from meta example build and cookbook rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
karlnapf authored and vigsterkr committed Mar 10, 2016
1 parent a39b545 commit e8545b9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion doc/cookbook/source/conf.py
Expand Up @@ -191,7 +191,10 @@
('java', 'java'),
('ruby', 'rb'),
('r', 'R'),
('lua', 'lua'),
# temporarily removed since lua modular currently
# does not support overloaded c++ methods
# see https://github.com/shogun-toolbox/shogun/issues/3018
#('lua', 'lua'),
('csharp', 'cs'),
('cpp', 'cpp'),
)
Expand Down
5 changes: 4 additions & 1 deletion examples/meta/CMakeLists.txt
Expand Up @@ -68,6 +68,9 @@ IF(ENABLE_TESTING)

# lua
IF (LuaModular AND EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/lua)
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/lua)
# temporarily removed since lua modular currently
# does not support overloaded c++ methods
# see https://github.com/shogun-toolbox/shogun/issues/3018
#add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/lua)
ENDIF()
ENDIF()

0 comments on commit e8545b9

Please sign in to comment.