We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60578dd commit e4f38d4Copy full SHA for e4f38d4
1 file changed
CMakeLists.txt
@@ -55,10 +55,14 @@ target_compile_definitions(tmj PUBLIC
55
LIBTMJ_VERSION="${PROJECT_VERSION}"
56
)
57
58
+
59
+# This breaks building libtmj on Linux for me.
60
+# If I didn't disable this, it would give me linker errors.
61
62
# Control symbol visibility
-if(NOT WIN32 AND NOT APPLE)
- target_link_options(tmj PRIVATE "LINKER:--version-script=src/tmj.sym")
-endif()
63
+# if(NOT WIN32 AND NOT APPLE)
64
+ # target_link_options(tmj PRIVATE "LINKER:--version-script=src/tmj.sym")
65
+# endif()
66
67
# Set include directories
68
target_include_directories(tmj PUBLIC include)
0 commit comments