We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53e75d3 commit 6cf19e4Copy full SHA for 6cf19e4
CMakeLists.txt
@@ -3,10 +3,10 @@ project(Argengine)
3
cmake_minimum_required(VERSION 2.8.12)
4
cmake_policy(VERSION 2.8.12)
5
6
-option(BUILD_TESTS "Build unit tests" ON)
7
-
8
option(BUILD_EXAMPLES "Build example apps" ON)
9
+option(BUILD_TESTS "Build unit tests" ON)
+
10
# Default to release C++ flags if CMAKE_BUILD_TYPE not set
11
if(NOT CMAKE_BUILD_TYPE)
12
set(CMAKE_BUILD_TYPE Release CACHE STRING
README.md
@@ -39,7 +39,7 @@ include_directories(Argengine/src)
39
Link to the library:
40
41
```
42
-target_link_libraries(${YOUR_TARGET_NAME} Argengine)
+target_link_libraries(${YOUR_TARGET_NAME} Argengine_static)
43
44
45
In your code:
0 commit comments