|
@@ -1,6 +1,8 @@
|
|
cmake_minimum_required(VERSION 3.5)
|
|
cmake_minimum_required(VERSION 3.5)
|
|
|
|
|
|
-project(horrible-harry)
|
|
|
|
|
|
+project(horrible-harry
|
|
|
|
+ VERSION 0.1
|
|
|
|
+ LANGUAGES CXX C)
|
|
|
|
|
|
|
|
|
|
###########
|
|
###########
|
|
@@ -138,6 +140,11 @@ add_subdirectory(zf_log)
|
|
# )
|
|
# )
|
|
# add_executable(yourProj ${SOURCES})
|
|
# add_executable(yourProj ${SOURCES})
|
|
|
|
|
|
|
|
+add_executable(ansi-to-src ansi-to-src.cpp utils.cpp)
|
|
|
|
+if(DISABLE_BUFFER_DEBUG)
|
|
|
|
+target_compile_definitions(ansi-to-src PUBLIC NO_BUFFER_DEBUG=1)
|
|
|
|
+endif()
|
|
|
|
+
|
|
add_custom_command(
|
|
add_custom_command(
|
|
OUTPUT images.h
|
|
OUTPUT images.h
|
|
COMMAND ./build_images.sh
|
|
COMMAND ./build_images.sh
|
|
@@ -155,13 +162,10 @@ if(DISABLE_BUFFER_DEBUG)
|
|
target_compile_definitions(hharry PUBLIC NO_BUFFER_DEBUG=1)
|
|
target_compile_definitions(hharry PUBLIC NO_BUFFER_DEBUG=1)
|
|
endif()
|
|
endif()
|
|
|
|
|
|
-add_executable(try-re try-re.c)
|
|
|
|
|
|
+# If you want this: ninja try-re or make try-re
|
|
|
|
+add_executable(try-re EXCLUDE_FROM_ALL try-re.c)
|
|
|
|
|
|
-add_executable(ansi-color ansi-color.c)
|
|
|
|
-add_executable(ansi-to-src ansi-to-src.cpp utils.cpp)
|
|
|
|
-if(DISABLE_BUFFER_DEBUG)
|
|
|
|
-target_compile_definitions(ansi-to-src PUBLIC NO_BUFFER_DEBUG=1)
|
|
|
|
-endif()
|
|
|
|
|
|
+add_executable(ansi-color EXCLUDE_FROM_ALL ansi-color.c)
|
|
|
|
|
|
add_executable(images images.cpp utils.cpp images.h)
|
|
add_executable(images images.cpp utils.cpp images.h)
|
|
target_link_libraries(images zf_log)
|
|
target_link_libraries(images zf_log)
|