Skip to content

Commit

Permalink
optional c km implementation, not faster though
Browse files Browse the repository at this point in the history
Signed-off-by: Conrad Hübler <Conrad.Huebler@gmx.net>
  • Loading branch information
conradhuebler committed Apr 26, 2024
1 parent 31d4bd9 commit cc6f836
Show file tree
Hide file tree
Showing 7 changed files with 1,489 additions and 15 deletions.
14 changes: 10 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -167,18 +167,24 @@ set(curcuma_core_SRC
src/core/forcefieldthread.cpp
src/core/forcefield.cpp
src/core/forcefieldfunctions.h
src/core/forcefieldgenerator.cpp
#src/core/forcefield_terms/qmdff_terms.h
src/tools/formats.h
src/tools/geometry.h
src/tools/general.h
)
add_library(curcuma_core ${curcuma_core_SRC})

add_executable(curcuma
src/main.cpp
src/core/forcefieldgenerator.h src/core/forcefieldgenerator.cpp
set(km_SRC
src/capabilities/c_code/hungarian.c
src/capabilities/c_code/interface.c
)
add_library(km ${km_SRC})
target_link_libraries(curcuma_core km)

)
add_executable(curcuma
src/main.cpp
)

if(C17)
set_property(TARGET curcuma_core PROPERTY CXX_STANDARD 17)
Expand Down
Loading

0 comments on commit cc6f836

Please sign in to comment.