diff --git a/Intern/RAY-CLI/CMakeLists.txt b/Intern/RAY-CLI/CMakeLists.txt index 0f27cb152..f7ad6ef75 100644 --- a/Intern/RAY-CLI/CMakeLists.txt +++ b/Intern/RAY-CLI/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.15 FATAL_ERROR) # ---- Project ---- project(RAY-CLI VERSION 0.5.0.0) -add_executable(${PROJECT_NAME} main.cpp TerminalApp.cpp TerminalApp.h CommandParser.cpp) +add_executable(${PROJECT_NAME} main.cpp TerminalApp.cpp CommandParser.cpp) # ------------------ @@ -34,7 +34,5 @@ target_link_libraries(${PROJECT_NAME} PRIVATE RAY-Core ${PYTHON_LIBRARIES} ) -target_include_directories(${PROJECT_NAME} PRIVATE - ${PROJECT_BINARY_DIR} -) +target_include_directories(${PROJECT_NAME} PRIVATE ${PROJECT_BINARY_DIR}) # ---------------------- \ No newline at end of file diff --git a/Intern/RAY-X/src/main.cpp b/Intern/RAY-X/src/main.cpp index 5c34fbca1..ac8a322e8 100644 --- a/Intern/RAY-X/src/main.cpp +++ b/Intern/RAY-X/src/main.cpp @@ -2,7 +2,7 @@ #include -void main() +int main() { std::cout << "Hello World!" << std::endl; } \ No newline at end of file