diff options
author | Brad King <brad.king@kitware.com> | 2019-11-14 15:31:18 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-11-14 15:57:42 (GMT) |
commit | d2e5e6ff1abec8b3b1579f122b7dcc89a35dbba4 (patch) | |
tree | 53e92d69536044321ac31d5543a6c426546b5aba /Tests/Objective-C++/cxx-file-extension-test | |
parent | 786954c4893565d8da27329201fd235e347e051d (diff) | |
download | CMake-d2e5e6ff1abec8b3b1579f122b7dcc89a35dbba4.zip CMake-d2e5e6ff1abec8b3b1579f122b7dcc89a35dbba4.tar.gz CMake-d2e5e6ff1abec8b3b1579f122b7dcc89a35dbba4.tar.bz2 |
Tests: Organize Objective C/C++ test directories
Move them all under `Tests/ObjC` and `Tests/ObjCXX`.
Diffstat (limited to 'Tests/Objective-C++/cxx-file-extension-test')
-rw-r--r-- | Tests/Objective-C++/cxx-file-extension-test/CMakeLists.txt | 5 | ||||
-rw-r--r-- | Tests/Objective-C++/cxx-file-extension-test/main.mm | 8 |
2 files changed, 0 insertions, 13 deletions
diff --git a/Tests/Objective-C++/cxx-file-extension-test/CMakeLists.txt b/Tests/Objective-C++/cxx-file-extension-test/CMakeLists.txt deleted file mode 100644 index 0b33875..0000000 --- a/Tests/Objective-C++/cxx-file-extension-test/CMakeLists.txt +++ /dev/null @@ -1,5 +0,0 @@ -cmake_minimum_required(VERSION 3.15) - -project(cxx-file-extension-test CXX) - -add_executable(cxx-file-extension-test main.mm) diff --git a/Tests/Objective-C++/cxx-file-extension-test/main.mm b/Tests/Objective-C++/cxx-file-extension-test/main.mm deleted file mode 100644 index 1c159a9..0000000 --- a/Tests/Objective-C++/cxx-file-extension-test/main.mm +++ /dev/null @@ -1,8 +0,0 @@ -#ifndef __OBJC__ -# error "Compiler cannot compile Objective-C" -#endif - -int main() -{ - return 0; -} |