You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
add_requires("gtest")
|
|
|
|
|
|
|
|
internal_library("surface_integral", "SI", os.scriptdir())
|
|
|
|
add_rules("config.indirect_predicates.flags")
|
|
|
|
add_deps("primitive_process", "shared_module")
|
|
|
|
|
|
|
|
-- add Google Test target
|
|
|
|
target("newton_method_test")
|
|
|
|
set_kind("binary")
|
|
|
|
add_deps("surface_integral") -- depend on the internal library surface_integral
|
|
|
|
add_files("test/SurfaceIntegrator_test.cpp")
|
|
|
|
add_packages("gtest")
|
|
|
|
target_end()
|