From 448649b8fa7a85db722377f6f744a4efe1d2a697 Mon Sep 17 00:00:00 2001 From: Keuin Date: Fri, 27 May 2022 16:49:03 +0800 Subject: Initial version (not threaded). --- CMakeLists.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..5bdfa5a --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,12 @@ +cmake_minimum_required(VERSION 3.0) +project(mobileqq_fp_cracker C) + +set(CMAKE_C_STANDARD 99) + +set(common_compiler_args "-Wall -Werror -Wno-unused") +set(CMAKE_CXX_FLAGS_DEBUG "${common_compiler_args} -g -ggdb -fsanitize=address -DDEBUG") +set(CMAKE_C_FLAGS_RELEASE "${common_compiler_args} -O3 -DNDEBUG") + +add_executable(fp_cracker main.c) + +target_link_libraries(fp_cracker libtomcrypt.a) \ No newline at end of file -- cgit v1.2.3