lean2/src/library/CMakeLists.txt
Leonardo de Moura 19533c811b feat(library/script_evaluator): add abstract class that exposes only the API needed by frontend objects
The main motivation is to break the remove the dependency frontends/lean <-- bindings/lua.
This dependency is undesirable because we want to expose the frontends/lean parser and pretty printer objects at bindings/lua.

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2013-11-15 12:13:09 -08:00

5 lines
229 B
CMake

add_library(library basic_thms.cpp deep_copy.cpp max_sharing.cpp
context_to_lambda.cpp state.cpp update_expr.cpp type_inferer.cpp
placeholder.cpp expr_lt.cpp script_evaluator.cpp)
target_link_libraries(library ${LEAN_LIBS})