gclogger/src/CMakeLists.txt

7 lines
449 B
CMake
Raw Normal View History

2019-05-07 21:35:39 +02:00
# Notice name prefix of this variable, set by CMake according
# to value given with "project()" in the root CMakeLists.txt.
include_directories(${gclogger_SOURCE_DIR}/include)
2019-05-07 23:14:21 +02:00
add_executable(gclogger main.cpp GcLogger.cpp GcLogger.h SerialPort.cpp SerialPort.h GmcDevice.cpp GmcDevice.h)
2019-05-07 21:35:39 +02:00
# I assume you want to use LibProject as a library in MainProject.
include_directories(${gclogger_SOURCE_DIR}/libs)
link_directories(${gclogger_SOURCE_DIR}/libs)