diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2018-07-11 13:16:23 -0400 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2018-07-11 13:16:23 -0400 |
commit | 6d2f6ccc9237186331d431e0329cc0e9a72eb5fc (patch) | |
tree | 4ab640b62aa5142196cbec8640653eb0d8fc14b3 | |
parent | f1e962dfbeb09b1834e466ecf246764a7584946b (diff) | |
download | c++-6d2f6ccc9237186331d431e0329cc0e9a72eb5fc.tar.gz c++-6d2f6ccc9237186331d431e0329cc0e9a72eb5fc.tar.bz2 c++-6d2f6ccc9237186331d431e0329cc0e9a72eb5fc.zip |
linking with google's preformance tools
-rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d00da5b..2ea6cce 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,10 +23,10 @@ if (OPENMP_FOUND) set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}") endif() -target_link_libraries(wolff_finite gsl m cblas fftw3) -target_link_libraries(wolff_heisenberg gsl m cblas fftw3) -target_link_libraries(wolff_planar gsl m cblas fftw3) -target_link_libraries(analyze_correlations gsl m cblas fftw3) +target_link_libraries(wolff_finite gsl m cblas fftw3 tcmalloc profiler) +target_link_libraries(wolff_heisenberg gsl m cblas fftw3 tcmalloc profiler) +target_link_libraries(wolff_planar gsl m cblas fftw3 tcmalloc profiler) +target_link_libraries(analyze_correlations gsl m cblas fftw3 tcmalloc profiler) install(TARGETS wolff_finite wolff_heisenberg wolff_planar analyze_correlations DESTINATION bin) |