-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use CMake variables to enable/disable test apps #1987
Use CMake variables to enable/disable test apps #1987
Conversation
* Don't use environment variable GFXRECON_NO_TEST_APPS at the level of tests/ * Instead use CMake variable GFXRECON_INCLUDE_TEST_APPS, default ON To turn off test apps, provide "-DGFXRECON_INCLUDE_TEST_APPS=OFF" to CMake.
CI gfxreconstruct build queued with queue ID 355712. |
CI gfxreconstruct build # 5926 running. |
CI gfxreconstruct build # 5926 passed. |
CI gfxreconstruct build queued with queue ID 355769. |
CI gfxreconstruct build # 5928 running. |
CI gfxreconstruct build # 5928 passed. |
We should modify the Github CI to use the new env variable so we're making sure the test apps keep compiling correctly. |
The default should be "ON" and my testing seems to verify that - default build on my Linux machine built the tests. Could you checkout and build this branch just to verify it does what you think it should do? |
* use CMake GFXRECON_INCLUDE_TEST_APPS instead of GFXRECON_NO_TEST_APPS * Don't use environment variable GFXRECON_NO_TEST_APPS at the level of tests/ * Instead use CMake variable GFXRECON_INCLUDE_TEST_APPS, default ON To turn off test apps, provide "-DGFXRECON_INCLUDE_TEST_APPS=OFF" to CMake. * document change of variable and meaning for test app build
No description provided.