Support building with cmake.

This commit is contained in:
Joachim Bauch
2015-08-22 00:32:13 +02:00
parent 70c4977019
commit 8c3d253325
5 changed files with 100 additions and 6 deletions
+2
View File
@@ -0,0 +1,2 @@
add_subdirectory (DllLoader)
add_subdirectory (SampleDLL)
+26
View File
@@ -0,0 +1,26 @@
set (sources_dllloader
DllLoader.cpp
)
set (sources_dllloaderloader
DllLoaderLoader.cpp
)
if (NOT MSVC)
set (CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "-static")
set (CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "-static")
endif ()
add_executable (DllLoader ${sources_dllloader})
target_link_libraries ("DllLoader" "MemoryModule")
if (NOT MSVC)
set_target_properties ("DllLoader" PROPERTIES SUFFIX ".exe")
set_target_properties ("DllLoader" PROPERTIES LINK_FLAGS "-Wl,--image-base -Wl,0x20000000")
endif ()
add_executable (DllLoaderLoader ${sources_dllloaderloader})
target_link_libraries ("DllLoaderLoader" "MemoryModule")
if (NOT MSVC)
set_target_properties ("DllLoaderLoader" PROPERTIES SUFFIX ".exe")
set_target_properties ("DllLoaderLoader" PROPERTIES LINK_FLAGS "-Wl,--image-base -Wl,0x10000000")
endif ()
+12
View File
@@ -0,0 +1,12 @@
set (sources
SampleDLL.cpp
SampleDLL.h
SampleDLL.rc
)
add_definitions (-DSAMPLEDLL_EXPORTS)
add_library (SampleDLL MODULE ${sources})
if (NOT MSVC)
set_target_properties ("SampleDLL" PROPERTIES PREFIX "")
set_target_properties ("SampleDLL" PROPERTIES SUFFIX ".dll")
endif ()