A
Size: a a a
A
M
cmake_minimum_required(VERSION 3.17)
project(test_genetics)
set(CMAKE_CXX_STANDARD 20)
find_package(curses)
target_include_directories(test_genetics PRIVATE ${CURSES_INCLUDE_DIRS})
target_link_libraries(test_genetics PRIVATE ${CURSES_LIBRARIES})
add_executable(test_genetics main.cpp Coordinate.cpp Coordinate.h main.cpp Food.cpp Food.h Section.cpp Section.h Cell.cpp Cell.h Field.cpp Field.h)
M
A
A
M
cmake_minimum_required(VERSION 3.17)
project(test_genetics)
set(CMAKE_CXX_STANDARD 20)
add_executable(test_genetics main.cpp Coordinate.cpp Coordinate.h main.cpp Food.cpp Food.h Section.cpp Section.h Cell.cpp Cell.h Field.cpp Field.h)
find_package(curses)
target_include_directories(test_genetics PRIVATE ${CURSES_INCLUDE_DIRS})
target_link_libraries(test_genetics PRIVATE ${CURSES_LIBRARIES})
A
A
M
/app/extra/clion/bin/cmake/linux/bin/cmake -DCMAKE_BUILD_TYPE=Debug -G "CodeBlocks - Unix Makefiles" /home/ivantretyak/MEGA/Projects/Курсовые/test_genetics
CMake Warning at CMakeLists.txt:9 (find_package):
By not providing "Findcurses.cmake" in CMAKE_MODULE_PATH this project has
asked CMake to find a package configuration file provided by "curses", but
CMake did not find one.
Could not find a package configuration file provided by "curses" with any
of the following names:
cursesConfig.cmake
curses-config.cmake
Add the installation prefix of "curses" to CMAKE_PREFIX_PATH or set
"curses_DIR" to a directory containing one of the above files. If "curses"
provides a separate development package or SDK, be sure it has been
installed.
-- Configuring done
-- Generating done
-- Build files have been written to: /home/ivantretyak/MEGA/Projects/Курсовые/test_genetics/cmake-build-debug
[Finished]
A
M
A
A
R
R

A

R
R
R