Skip to content

Commit

Permalink
Renamed executable
Browse files Browse the repository at this point in the history
  • Loading branch information
claitz committed Aug 1, 2023
1 parent f520c93 commit b6f46d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ project(renameProject)

set(CMAKE_CXX_STANDARD 17)

add_executable(renameProject main.cpp)
add_executable(UEProjectUtility main.cpp)

find_path(TERMCOLOR_INCLUDE_DIRS termcolor/termcolor.hpp)

if(NOT TERMCOLOR_INCLUDE_DIRS)
message(FATAL_ERROR "Termcolor not found!")
endif()

target_include_directories(renameProject PRIVATE ${TERMCOLOR_INCLUDE_DIRS})
target_include_directories(UEProjectUtility PRIVATE ${TERMCOLOR_INCLUDE_DIRS})

0 comments on commit b6f46d1

Please sign in to comment.