Commit 218e7785eab5e7856e6fb35b7db4a506b6521831

Ralf Habacker 2020-08-25T23:24:25

Fix cmake warning 'No project() command is present'

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/cmake-test/CMakeLists.txt b/cmake-test/CMakeLists.txt
index 815d127..b191317 100644
--- a/cmake-test/CMakeLists.txt
+++ b/cmake-test/CMakeLists.txt
@@ -1,6 +1,7 @@
 # Simple CMake project to test the use of dlfcn-win32
 # imported target. The test compiled is the same compiled
 # as part of the main dlfcn-win32 project 
+project(dlfcn-win32-test)
 
 cmake_minimum_required(VERSION 3.0)