1
0
mirror of https://github.com/fumiama/base16384.git synced 2026-06-22 16:10:24 +08:00

新的设计,速度快很多

This commit is contained in:
fumiama
2021-04-08 15:34:32 +08:00
parent 2785b6e766
commit 963abc1ec3
13 changed files with 355 additions and 305 deletions

14
CMakeLists.txt Normal file
View File

@@ -0,0 +1,14 @@
cmake_minimum_required(VERSION 3.0.0)
project(base16384 VERSION 2.0)
add_executable(base16384 base16384.c)
IF(CMAKE_SIZEOF_VOID_P EQUAL 8)
add_definitions("-DCPUBIT64")
add_subdirectory("./64")
target_link_libraries(base16384 base1464)
ELSE()
add_definitions("-DCPUBIT32")
add_subdirectory("./32")
target_link_libraries(base16384 base1432)
ENDIF()