From 6e9736cf1ee424c8cef7796a782e23e014f5fd93 Mon Sep 17 00:00:00 2001 From: Pierre Moreau Date: Sat, 27 Apr 2019 02:35:04 +0200 Subject: [PATCH] Fix typos in main CMakeLists.txt (#234) --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d86232c2..fff8649a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -51,15 +51,15 @@ option(GLES_IS_SUPPORTED "Run OpenGL ES interop tests" OFF) #----------------------------------------------------------- # Set the prefix and suffix for the generated executables # For example, if you want the api executable to be test_conformance_api_12 -# Set previx to "test_conformance_" and suffix to "_12" +# Set prefix to "test_conformance_" and suffix to "_12" set(CONFORMANCE_PREFIX "test_" ) -set(CONFORMNACE_SUFFIX "" ) +set(CONFORMANCE_SUFFIX "" ) #----------------------------------------------------------- # Vendor Customization #----------------------------------------------------------- #Vendor Customization File can be included here to provide a way to automatically -#build driver as a depencency of the conformance tests, or other such CMake customization +#build driver as a dependency of the conformance tests, or other such CMake customization option(USE_VENDOR_CUSTOM_FILE "Use Vendor Customization File" OFF) if(USE_VENDOR_CUSTOM_FILE) include(CMakeVendor.txt OPTIONAL)