Merge pull request #3493 from ye-luo/fix-cmake

Fix accidentally moved executables by #3467
This commit is contained in:
Ye Luo 2021-09-29 17:45:52 -05:00 committed by GitHub
commit ed14d860f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View File

@ -17,6 +17,7 @@
project(qmctools)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${qmcpack_BINARY_DIR}/bin)
add_executable(convert4qmc convert4qmc.cpp QMCGaussianParserBase.cpp GaussianFCHKParser.cpp GamesAsciiParser.cpp
LCAOHDFParser.cpp DiracParser.cpp)

View File

@ -10,6 +10,7 @@
#//////////////////////////////////////////////////////////////////////////////////////
unset(CMAKE_RUNTIME_OUTPUT_DIRECTORY)
set(SRC_DIR tools)
set(UTEST_EXE test_${SRC_DIR})
set(UTEST_NAME deterministic-unit_test_${SRC_DIR})

View File

@ -1,5 +1,6 @@
project(Sandbox)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${qmcpack_BINARY_DIR}/bin)
# add apps XYZ.cpp, e.g., qmc_particles.cpp
set(ESTEST diff_distancetables einspline_spo einspline_spo_nested determinant restart determinant_delayed_update)