diff options
| author | hristo <[email protected]> | 2021-01-25 11:44:30 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-01-25 10:44:30 +0100 |
| commit | 4bf7b00013f7efe222d02171e176bb827a90fad9 (patch) | |
| tree | bda85687fff7232a111a9ee3718f9965b24cf742 /src | |
| parent | 1d23e1569219f22376144999de07900c7409d13f (diff) | |
| download | raylib-4bf7b00013f7efe222d02171e176bb827a90fad9.tar.gz raylib-4bf7b00013f7efe222d02171e176bb827a90fad9.zip | |
Removing test file. (#1545)
This test file is just testing compilation with the library works correctly but is no longer needed because:
- it is not cross platform
- it taps into the CTest system which is better suited for real unit/integration tests
- it can be incorporated into the pipeline of github actions instead in the future
Diffstat (limited to 'src')
| -rw-r--r-- | src/CMakeLists.txt | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index f6416dfe..a11f4efb 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -56,7 +56,6 @@ add_library(raylib ${raylib_sources} ${raylib_public_headers}) if (NOT BUILD_SHARED_LIBS) MESSAGE(STATUS "Building raylib static library") add_library(raylib_static ALIAS raylib) - add_test("pkg-config--static" ${PROJECT_SOURCE_DIR}/../cmake/test-pkgconfig.sh --static) else() MESSAGE(STATUS "Building raylib shared library") if (MSVC) @@ -65,8 +64,6 @@ else() INTERFACE $<INSTALL_INTERFACE:USE_LIBTYPE_SHARED> ) endif () - - add_test("pkg-config" ${PROJECT_SOURCE_DIR}/../cmake/test-pkgconfig.sh) endif() # Setting target properties |
