1cmake_minimum_required(VERSION 3.18.1) 2 3project("nativepoc") 4 5add_executable( 6 nativepoc 7 native-sample.cpp 8) 9 10find_library( # Sets the name of the path variable. 11 log-lib 12 log) 13