You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
197 B
17 lines
197 B
if (NOT MSVC)
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99")
|
|
endif()
|
|
|
|
set(FILES
|
|
internal.c
|
|
ethash.h
|
|
endian.h
|
|
compiler.h
|
|
fnv.h
|
|
data_sizes.h
|
|
sha3.c
|
|
sha3.h
|
|
)
|
|
|
|
add_library(ethash ${FILES})
|
|
|
|
|