diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-11 04:10:19 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-11 04:10:19 +0300 |
commit | 593a7b954a7dafbc5f4f3e752dfd385c4c5490f5 (patch) | |
tree | 8257e9430fe4669132670c7ebeb82af62988c9a8 /CMakeLists.txt | |
parent | rename source files (diff) | |
download | aes-tools-593a7b954a7dafbc5f4f3e752dfd385c4c5490f5.tar.gz aes-tools-593a7b954a7dafbc5f4f3e752dfd385c4c5490f5.zip |
libaesni -> aesni
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 8eb62b4..505e823 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,18 +1,18 @@ -project(libaesni C CXX ASM_MASM) -file(GLOB_RECURSE ${PROJECT_NAME}_headers "include/*.h") +project(aesni C CXX ASM_MASM) + +file(GLOB_RECURSE libaesni_headers "include/*.h") if(AESNI_USE_ASM) - file(GLOB ${PROJECT_NAME}_c_sources "src/*.c") - file(GLOB ${PROJECT_NAME}_asm_sources "src/asm/*.asm") - set(${PROJECT_NAME}_sources ${${PROJECT_NAME}_asm_sources} ${${PROJECT_NAME}_c_sources}) - set_source_files_properties(${${PROJECT_NAME}_asm_sources} PROPERTIES COMPILE_FLAGS "/safeseh") + file(GLOB libaesni_c_sources "src/*.c") + file(GLOB libaesni_asm_sources "src/asm/*.asm") + set(libaesni_sources ${libaesni_asm_sources} ${libaesni_c_sources}) + set_source_files_properties(${libaesni_asm_sources} PROPERTIES COMPILE_FLAGS "/safeseh") # Setting CMAKE_ASM_MASM_FLAGS doesn't work: http://www.cmake.org/Bug/view.php?id=14711 else() - file(GLOB_RECURSE ${PROJECT_NAME}_sources "src/*.c") + file(GLOB_RECURSE libaesni_sources "src/*.c") endif() -add_library(${PROJECT_NAME} ${${PROJECT_NAME}_headers} - ${${PROJECT_NAME}_sources}) -target_include_directories(${PROJECT_NAME} PUBLIC include/) -target_compile_definitions(${PROJECT_NAME} PRIVATE _CRT_SECURE_NO_WARNINGS) +add_library(libaesni ${libaesni_sources} ${libaesni_headers}) +target_include_directories(libaesni PUBLIC include/) +target_compile_definitions(libaesni PRIVATE _CRT_SECURE_NO_WARNINGS) add_subdirectory(examples) add_subdirectory(test) |