IGC: CMakeLists: add project

If project is not added, CMake will warn about it:
No project() command is present. The top-level CMakeLists.txt file
must contain a literal, direct call to the project() command.

Signed-off-by: Conrad Kostecki <conrad@kostecki.com>
This commit is contained in:
Szymichowski, Pawel
2021-09-06 20:39:30 +00:00
committed by igcbot
parent e2e20fef64
commit 8ae6b4d50f

View File

@ -8,6 +8,8 @@
cmake_minimum_required(VERSION 3.13.4 FATAL_ERROR)
project(IGC)
add_subdirectory(IGC)
list(APPEND IGC__IGC_TARGETS "igc_dll")