I have the following CMakeLists.txt:
cmake_minimum_required(VERSION 3.3)
project(Thesis)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
set(SOURCE_FILES main.cpp Graph.h Graph.cpp)
add_executable(Thesis ${SOURCE_FILES})
I am using Run->Build (as release) on a custom folder ClionProjects\Thesis\exe\Release
and I get a single executable Thesis.exe
. If I open that, I get the following consecutive errors:
What am I missing exactly ?
Aucun commentaire:
Enregistrer un commentaire