Skip to content
Snippets Groups Projects
Commit 9f61d1be authored by Alejandro Lopez Gestoso's avatar Alejandro Lopez Gestoso
Browse files

Moved .h files to include directory. Adapted src/CMakeLists.txt

parent aab03736
No related branches found
No related tags found
No related merge requests found
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
# edit the following line to add all the source code files of the library
SET(sources ./exceptions/exceptions.cpp ./mutex/mutex.cpp ./mutex/mutexexceptions.cpp ./events/event.cpp ./events/eventserver.cpp ./events/eventexceptions.cpp ./threads/thread.cpp ./threads/threadserver.cpp ./threads/threadexceptions.cpp ./logs/log.cpp ./logs/logexceptions.cpp ./time/ctime.cpp ./time/ctimeexceptions.cpp)
# edit the following line to add all the header files of the library
SET(headers ./exceptions/exceptions.h ./mutex/mutex.h ./mutex/mutexexceptions.h ./events/event.h ./events/eventserver.h ./events/eventexceptions.h ./threads/thread.h ./threads/threadserver.h ./threads/threadexceptions.h ./logs/log.h ./logs/logexceptions.h ./time/ctime.h ./time/ctimeexceptions.h)
SET(headers ../include/exceptions/exceptions.h ../include/mutex/mutex.h ../include/mutex/mutexexceptions.h ../include/events/event.h ../include/events/eventserver.h ../include/events/eventexceptions.h ../include/threads/thread.h ../include/threads/threadserver.h ../include/threads/threadexceptions.h ../include/logs/log.h ../include/logs/logexceptions.h ../include/time/ctime.h ../include/time/ctimeexceptions.h)
# edit the following line to add the necessary include directories
INCLUDE_DIRECTORIES(./exceptions ./mutex ./events ./threads ./logs ./time)
INCLUDE_DIRECTORIES(../include/exceptions ../include/mutex ../include/events ../include/threads ../include/logs ../include/time)
# edit the following line to find the necessary packages
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment