diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2018-07-23 17:19:13 -0400 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2018-07-23 17:19:13 -0400 |
commit | 7253529af9b1cc00292a0b5431fb0098e765a2ba (patch) | |
tree | a6d1c251cc6e0664e78fda773fb121e48df364b9 | |
parent | 1f5c0921c2fe3f8790a4f4035883a0d3db3a9031 (diff) | |
download | c++-7253529af9b1cc00292a0b5431fb0098e765a2ba.tar.gz c++-7253529af9b1cc00292a0b5431fb0098e765a2ba.tar.bz2 c++-7253529af9b1cc00292a0b5431fb0098e765a2ba.zip |
cmake fixes
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b412742..b5a47d6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -44,6 +44,7 @@ if (${GLUT} MATCHES "GLUT-NOTFOUND") target_link_libraries(wolff_dgm cblas gsl m) target_link_libraries(wolff_cgm cblas gsl m) target_link_libraries(wolff_3potts cblas gsl m) + target_link_libraries(wolff_4potts cblas gsl m) target_link_libraries(wolff_heisenberg cblas gsl m) target_link_libraries(wolff_planar cblas gsl m) else() @@ -63,5 +64,5 @@ else() target_compile_definitions(wolff_heisenberg PUBLIC HAVE_GLUT) endif() -install(TARGETS wolff_finite wolff_ising wolff_dgm wolff_cgm wolff_3potts wolff_heisenberg wolff_planar analyze_correlations DESTINATION bin) +install(TARGETS wolff_finite wolff_ising wolff_dgm wolff_cgm wolff_3potts wolff_4potts wolff_heisenberg wolff_planar analyze_correlations DESTINATION bin) |