Skip to content

Commit

Permalink
ubuntu cli fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Atraxus committed Apr 15, 2023
1 parent 26a1373 commit bfc5a16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions Intern/RAY-CLI/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
# ------------------


Expand Down Expand Up @@ -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})
# ----------------------
2 changes: 1 addition & 1 deletion Intern/RAY-X/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include <iostream>

void main()
int main()
{
std::cout << "Hello World!" << std::endl;
}

0 comments on commit bfc5a16

Please sign in to comment.