Cleaned up the sources
parent
fb793fff7c
commit
761331ec50
|
@ -19,16 +19,10 @@ set(CMAKE_CXX_STANDARD 17)
|
||||||
find_package(SDL2 REQUIRED)
|
find_package(SDL2 REQUIRED)
|
||||||
include_directories(${SDL2_INCLUDE_DIRS})
|
include_directories(${SDL2_INCLUDE_DIRS})
|
||||||
|
|
||||||
# Global lib config
|
|
||||||
add_executable(${PROJECT_NAME} src/ceev.cc src/ceev.h)
|
add_executable(${PROJECT_NAME} src/ceev.cc src/ceev.h)
|
||||||
find_package(ceev REQUIRED)
|
find_package(ceev REQUIRED)
|
||||||
include_directories(${ceev_INCLUDE_DIRS})
|
include_directories(${ceev_INCLUDE_DIRS})
|
||||||
target_link_libraries(${PROJECT_NAME} ${ceev_LIBRARIES})
|
target_link_libraries(${PROJECT_NAME} ${ceev_LIBRARIES})
|
||||||
#endconfig
|
|
||||||
|
|
||||||
# Local lib config
|
|
||||||
# add_executable(${PROJECT_NAME} src/ceev.cc src/ceev.h src/colors.cc src/colors.h)
|
|
||||||
# endconfig
|
|
||||||
|
|
||||||
target_link_libraries(${PROJECT_NAME} ${SDL2_LIBRARIES})
|
target_link_libraries(${PROJECT_NAME} ${SDL2_LIBRARIES})
|
||||||
|
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
# CeeV Language Documentation
|
|
||||||
|
|
||||||
Coming soon...
|
|
|
@ -11,8 +11,6 @@
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
/* #include "colors.h" */
|
|
||||||
|
|
||||||
#ifndef __ceev_version
|
#ifndef __ceev_version
|
||||||
#define __ceev_version "0.1.1-devel"
|
#define __ceev_version "0.1.1-devel"
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue