From e5b520ea8ef81685204251be0accae7da87e4fa4 Mon Sep 17 00:00:00 2001 From: Jason Juang Date: Wed, 11 Dec 2019 10:30:54 -0800 Subject: [PATCH] match case to actual file name for linux (#158) --- CMakeLists.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1c6ee60..6ec3ee4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -65,17 +65,17 @@ if(MSVC) string(REPLACE "/GR " "/GR- " CMAKE_CXX_FLAGS_RELEASE ${CMAKE_CXX_FLAGS_RELEASE}) endif() -add_executable(texassemble texassemble/texassemble.cpp) +add_executable(texassemble Texassemble/texassemble.cpp) target_link_libraries(texassemble ${PROJECT_NAME}) -source_group(texassemble REGULAR_EXPRESSION texassemble/*.*) +source_group(texassemble REGULAR_EXPRESSION Texassemble/*.*) -add_executable(texconv texconv/texconv.cpp) +add_executable(texconv Texconv/texconv.cpp) target_link_libraries(texconv ${PROJECT_NAME}) -source_group(texconv REGULAR_EXPRESSION texconv/*.*) +source_group(texconv REGULAR_EXPRESSION Texconv/*.*) -add_executable(texdiag texdiag/texdiag.cpp) +add_executable(texdiag Texdiag/texdiag.cpp) target_link_libraries(texdiag ${PROJECT_NAME}) -source_group(texdiag REGULAR_EXPRESSION texdiag/*.*) +source_group(texdiag REGULAR_EXPRESSION Texdiag/*.*) if(MSVC) target_compile_options(${PROJECT_NAME} PRIVATE /fp:fast)