summaryrefslogtreecommitdiff
path: root/src/expr
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr')
-rw-r--r--src/expr/CMakeLists.txt22
1 files changed, 16 insertions, 6 deletions
diff --git a/src/expr/CMakeLists.txt b/src/expr/CMakeLists.txt
index c11333bff..83bd2d585 100644
--- a/src/expr/CMakeLists.txt
+++ b/src/expr/CMakeLists.txt
@@ -1,4 +1,4 @@
-set(expr_src_files
+libcvc4_add_sources(
array.h
array_store_all.cpp
array_store_all.h
@@ -49,7 +49,7 @@ set(expr_src_files
uninterpreted_constant.h
)
-set(expr_gen_src_files
+libcvc4_add_sources(GENERATED
kind.cpp
kind.h
metakind.cpp
@@ -62,10 +62,6 @@ set(expr_gen_src_files
type_properties.h
)
-add_library(expr ${expr_src_files} ${expr_gen_src_files})
-target_link_libraries(expr PRIVATE options)
-target_compile_definitions(expr PRIVATE -D__BUILDING_CVC4LIB)
-
#
# Generate code for kinds.
#
@@ -174,3 +170,17 @@ add_custom_command(
> ${CMAKE_CURRENT_BINARY_DIR}/type_checker.cpp
DEPENDS mkexpr type_checker_template.cpp
)
+
+add_custom_target(gen-expr
+ DEPENDS
+ kind.cpp
+ kind.h
+ metakind.cpp
+ metakind.h
+ expr.cpp
+ expr.h
+ expr_manager.cpp
+ expr_manager.h
+ type_checker.cpp
+ type_properties.h
+)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback