Added test for CPM-specific CMakeCache values

This commit is contained in:
Borislav Stanimirov
2022-01-12 12:18:43 +02:00
parent 058eabe0d2
commit aec0f0d79a
5 changed files with 65 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
project(no-deps)
include("%{cpm_path}")
add_executable(no-deps main.c)

View File

@@ -0,0 +1,6 @@
#include <stdio.h>
int main() {
puts("Hello");
return 0;
}