Although the file is empty when not compiling with CWDEBUG, windows doesn't like the -fPIC there.
40 lines
759 B
CMake
40 lines
759 B
CMake
# -*- cmake -*-
|
|
|
|
project(cwdebug)
|
|
|
|
include(00-Common)
|
|
include(LLCommon)
|
|
include(LLMath)
|
|
include(LLMessage)
|
|
include(LLVFS)
|
|
|
|
include_directories (${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
set(cwdebug_SOURCE_FILES
|
|
debug.cc
|
|
)
|
|
|
|
set(cwdebug_HEADER_FILES
|
|
CMakeLists.txt
|
|
|
|
cwdebug.h
|
|
sys.h
|
|
debug.h
|
|
debug_ostream_operators.h
|
|
)
|
|
|
|
set_source_files_properties(${cwdebug_HEADER_FILES}
|
|
PROPERTIES HEADER_FILE_ONLY TRUE)
|
|
|
|
if(NOT WORD_SIZE EQUAL 32)
|
|
if(WINDOWS)
|
|
add_definitions(/FIXED:NO)
|
|
else(WINDOWS) # not windows therefore gcc LINUX and DARWIN
|
|
add_definitions(-fPIC)
|
|
endif(WINDOWS)
|
|
endif (NOT WORD_SIZE EQUAL 32)
|
|
|
|
list(APPEND cwdebug_SOURCE_FILES ${cwdebug_HEADER_FILES})
|
|
|
|
add_library (cwdebug ${cwdebug_SOURCE_FILES})
|