You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdevelop/languages/cpp/app_templates/cmakesimple/cmakesimple-CMakeLists.txt

16 lines
371 B

PROJECT(%{APPNAMELC})
#if you don't want the full compiler output, remove the following line
SET(CMAKE_VERBOSE_MAKEFILE ON)
#add definitions, compiler switches, etc.
ADD_DEFINITIONS(-Wall -O2)
#list all source files here
ADD_EXECUTABLE(%{APPNAMELC} main.cpp)
#need to link to some other libraries ? just add them here
#TARGET_LINK_LIBRARIES(%{APPNAMELC} png jpeg)