forked from clwi/CWPack
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCMakeLists.txt
63 lines (50 loc) · 2.55 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
##
#######################################################################################################################
#
# Modifications Copyright© 2019 Advanced Micro Devices, Inc. All rights reserved.
#
#######################################################################################################################
cmake_minimum_required(VERSION 3.1)
project(CWPACK C)
### Create CWPACK Library ############################################################################################
add_library(cwpack STATIC "")
### Cached Project Options #############################################################################################
# No exposed CWPACK options
### Compiler Options ###################################################################################################
if(WIN32)
if(CMAKE_C_COMPILER_ID STREQUAL "MSVC")
message(STATUS "Configured ${PROJECT_NAME} compiler options for MSVC.")
else()
message(FATAL_ERROR "Using unknown compiler")
endif()
elseif(UNIX)
if(CMAKE_C_COMPILER_ID MATCHES "GNU")
# SEE: https://gcc.gnu.org/onlinedocs/gcc-6.2.0/gcc/Option-Summary.html#Option-Summary
# for a list of all options and documentation.
target_compile_options(cwpack PRIVATE -pthread -fPIC)
message(STATUS "Configured ${PROJECT_NAME} compiler options for GCC.")
elseif(CMAKE_C_COMPILER_ID MATCHES "Clang")
message(WARNING "Clang is untested.")
target_compile_options(cwpack PRIVATE -pthread -fPIC)
else()
message(FATAL_ERROR "Using unknown compiler.")
endif()
endif()
### Defines/Includes/Sources ###########################################################################################
target_compile_definitions(cwpack PRIVATE COMPILE_FOR_${TARGET_ARCHITECTURE_ENDIANESS}_ENDIAN)
if(WIN32)
if(TARGET_ARCHITECTURE_BITS EQUAL 32)
target_compile_definitions(cwpack PUBLIC CWP_CALL=__fastcall)
endif()
endif()
target_include_directories(cwpack PUBLIC src)
target_sources(cwpack PRIVATE src/cwpack.c)
### Link Libraries #####################################################################################################
# No external libraries required for CWPACK.
### Find headers and build source groups ###############################################################################
#target_find_headers(cwpack)
#target_source_groups(cwpack)
### Mark all options as advanced #######################################################################################
if(CWPACK_OPTIONS_MARK_ADVANCED)
mark_grouped_as_advanced(CWPACK)
endif()